Searched defs:integer_sequence (Results 1 – 2 of 2) sorted by relevance
49 struct integer_sequence { struct51 …static_assert(is_integral<_Tp>::value, "std::integer_sequence can only be instantiated with an int… argument56 using index_sequence = integer_sequence<size_t, _Ip...>; argument
18 template <typename T, T... Ints> struct integer_sequence { struct20 template <T Next> using append = integer_sequence<T, Ints..., Next>; argument