Metafunction to compute the index of the maximum integral value in a compile-time tuple. More...
Public Types | |
| using | type = std::integral_constant< std::size_t, value > |
Static Public Attributes | |
| static constexpr std::size_t | value |
Metafunction to compute the index of the maximum integral value in a compile-time tuple.
For example, given the input tuple< integral_constant<int, 0>, integral_constant<int, 2>, integral_constant<int, 1>> would be the value 1, as the max value (2) is at index 1.
| Tuple | The tuple of compile time constants |
|
static |
1.8.13