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β]