![]() |
Arene Base
Fundamental Utilities For Safety Critical C++
|
Template meta-function for querying the 0-based index of a type in a list of types. More...

Template meta-function for querying the 0-based index of a type in a list of types.
| T | The type to search for. |
| Ts | The list of types to search in. |
If T is found within Ts... then this type inherits from std::integral_constant<std::size_t, Idx> where Idx is the zero-based index of the first occurrence of T in Ts...
Access the result using the value member of this type. This type will not have a value member if T is not one of the types listed in Ts....