Searched defs:make_index_sequence (Results 1 – 10 of 10) sorted by relevance
42 struct make_index_sequence { struct44 typename make_index_sequence<(B+E)/2,E>::type>::type type;48 struct make_index_sequence<B,E,typename std::enable_if<E==B+1,void>::type> { struct49 typedef index_sequence<B> type;53 struct make_index_sequence<0, 0> { struct54 typedef index_sequence<> type;
38 struct make_index_sequence struct42 template<> struct make_index_sequence<0> : index_sequence<> {}; struct43 template<> struct make_index_sequence<1> : index_sequence<0> {}; struct
31 struct make_index_sequence struct33 using type = std::make_index_sequence<N>;
28 using make_index_sequence = std::make_index_sequence< I >; typedef
82 using make_index_sequence = make_integer_sequence<std::size_t, N>; typedef
39 struct make_index_sequence struct43 struct make_index_sequence<0, I...> struct
46 using make_index_sequence = typename make_index_sequence_t<I...>::type; typedef
104 template<std::size_t N> using make_index_sequence = make_integer_sequence<std::size_t, N>; typedef
2705 struct make_index_sequence struct2709 template<> struct make_index_sequence<0> : index_sequence<> {}; struct2710 template<> struct make_index_sequence<1> : index_sequence<0> {}; struct