![]() |
Arene Base
Fundamental Utilities For Safety Critical C++
|
Implements a compile-time sequence of integers. More...
Public Types | |
| using | value_type = Type |
| The sequence integer type. | |
Static Public Member Functions | |
| static constexpr auto | size () noexcept -> size_t |
| Returns the number of elements in the sequence. | |
Implements a compile-time sequence of integers.
| Type | an integer type to use for the sequence of elements |
| Ints | a non-type parameter pack of elements defining the sequence |
Represents a compile-time sequence of integers of type Type. When used as an argument to a function template, the parameter pack defining the sequence can be deduced and used in a pack expansion.
| using std::integer_sequence< Type, Ints >::value_type = Type |
The sequence integer type.
|
inlinestaticconstexprnoexcept |
Returns the number of elements in the sequence.
sizeof...(Ints)