std::integer_sequence
suggest changeThe class template std::integer_sequence<Type, Values...>
represents a sequence of values of type Type
where Type
is one of the built-in integer types. These sequences are used when implementing class or function templates which benefit from positional access. The standard library also contains “factory” types which create ascending sequences of integer values just from the number of elements.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents