20 General utilities library [utilities]

20.3 Compile-time integer sequences [intseq]

20.3.3 Alias template make_­integer_­sequence [intseq.make]

template<class T, T N> using make_integer_sequence = integer_sequence<T, see below>;
Mandates: .
The alias template make_­integer_­sequence denotes a specialization of integer_­sequence with N non-type template arguments.
The type make_­integer_­sequence<T, N> is an alias for the type integer_­sequence<T, 0, 1, ..., N-1>.
Note
:
make_­integer_­sequence<int, 0> is an alias for the type integer_­sequence<int>.
— end note
 ]