|
HDK
|
Include dependency graph for UT_TupleUtil.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Namespaces | |
| UT_TupleUtilImpl | |
Functions | |
| template<typename T , typename F > | |
| bool | UTtupleAnyOf (T &&tuple, F &&f) |
| template<typename T , typename F > | |
| void | UTtupleForEach (T &&tuple, F &&f) |
| bool UTtupleAnyOf | ( | T && | tuple, |
| F && | f | ||
| ) |
Invoke functor f for each element e in a tuple, returning true as soon as f(e) returns true. Returns false when f(e) is false for all elements.
Definition at line 82 of file UT_TupleUtil.h.
| void UTtupleForEach | ( | T && | tuple, |
| F && | f | ||
| ) |
Invoke functor f for each element e in a tuple.
Definition at line 97 of file UT_TupleUtil.h.