tinympl  0.2
mini MPL library for C++11
Non-modifying sequence operations

Classes

class  tinympl::variadic::all_of< F, Args >
 Determines whether every element in the sequence satisfies the given predicate. More...
 
class  tinympl::variadic::any_of< F, Args >
 Determines whether any of the elements in the sequence satisfy the given predicate. More...
 
class  tinympl::variadic::count< T, Args >
 Counts the number of elements in a sequence equal to a given one. More...
 
class  tinympl::variadic::count_if< F, Args >
 Counts the number of elements which satisfy a given predicate. More...
 
class  tinympl::variadic::find< T, Args >
 Compute the index of the first element in the sequence which is equal to the given type T. More...
 
class  tinympl::variadic::find_if< F, Args >
 
class  tinympl::variadic::none_of< F, Args >
 Determines whether none of the elements in the sequence satisfy the given predicate. More...
 

Detailed Description

Algorithms which analyze a sequence without producing an output sequence