23 General utilities library [utilities]

23.3 Compile-time integer sequences [intseq]

23.3.3 Alias template make_Β­integer_Β­sequence [intseq.make]

template<class T, T N> using make_integer_sequence = integer_sequence<T, see below>;

If N is negative the program is ill-formed. The alias template make_Β­integer_Β­sequence denotes a specialization of integer_Β­sequence with N template non-type arguments. The type make_Β­integer_Β­sequence<T, N> denotes the type integer_Β­sequence<T, 0, 1, ..., N-1>. [ Note: make_Β­integer_Β­sequence<int, 0> denotes the type integer_Β­sequence<int>  — end note ]