dune-common 2.9.0
|
Finding the index of a certain type in a std::tuple. More...
#include <dune/common/tupleutility.hh>
Finding the index of a certain type in a std::tuple.
Tuple | The std::tuple type to search in. |
Predicate | Predicate which tells FirstPredicateIndex which types in Tuple to accept. This should be a class template taking a single type template argument. When instantiated, it should contain a static member constant value which should be convertible to bool. A type is accepted if value is true , otherwise it is rejected and the next type is tried. Look at IsType for a sample implementation. |
start | First index to try. This can be adjusted to skip leading tuple elements. |
size | This parameter is an implementation detail and should not be adjusted by the users of this class. It should always be equal to the size of the std::tuple. |
This class can search for a type in std::tuple. It will apply the predicate to each type in std::tuple in turn, and set its member constant value
to the index of the first type that was accepted by the predicate. If none of the types are accepted by the predicate, a static_assert is triggered.