|
template<typename T , class Predicate > |
bool | dtk::all_of (const Dtk_tab< T > &tab, Predicate Pred) |
| Test condition on all elements in range, and returns true if pred returns true for all the elements in the range [first,last] or if the range is empty, and false otherwise. More...
|
|
template<class InputIterator , class Predicate > |
bool | dtk::all_of (InputIterator first, InputIterator last, Predicate Pred) |
| Test condition on all elements in range, and returns true if pred returns true for all the elements in the range [first,last] or if the range is empty, and false otherwise. More...
|
|
template<typename T , class Predicate > |
bool | dtk::any_of (const Dtk_tab< T > &tab, Predicate Pred) |
| Test if any element in range fulfills condition, returns true if pred returns true for any of the elements in the range [first,last], and false otherwise or if the range is empty. More...
|
|
template<class InputIterator , class Predicate > |
bool | dtk::any_of (InputIterator first, InputIterator last, Predicate Pred) |
| Test if any element in range fulfills condition, returns true if pred returns true for any of the elements in the range [first,last], and false otherwise or if the range is empty. More...
|
|
template<typename T > |
void | Dtk_swap (T &a, T &b) |
| Swap any type of data. More...
|
|
void | Dtk_ThrowOverflowException () |
|
template<typename T1 , typename T2 > |
Dtk_pair< T1, T2 > | make_Dtkpair (T1 &&x, T2 &&y) |
| Constructs a pair object with its first element set to x and its second element set to y. More...
|
|
template<typename T , class Predicate > |
bool | dtk::none_of (const Dtk_tab< T > &tab, Predicate Pred) |
| Test if no elements fulfill condition, returns true if pred returns false for all the elements in the range [first,last] or if the range is empty, and false otherwise. More...
|
|
template<class InputIterator , class Predicate > |
bool | dtk::none_of (InputIterator first, InputIterator last, Predicate Pred) |
| Test if no elements fulfill condition, returns true if pred returns false for all the elements in the range [first,last] or if the range is empty, and false otherwise. More...
|
|