Home | History | Annotate | Download | only in tuple.helper

Lines Matching refs:tuple

10 // <tuple>
12 // template <class... Types> class tuple;
15 // class tuple_element<I, tuple<Types...> >
23 #include <tuple>
45 test<std::tuple<int>, 0, int>();
46 test<std::tuple<char, int>, 0, char>();
47 test<std::tuple<char, int>, 1, int>();
48 test<std::tuple<int*, char, int>, 0, int*>();
49 test<std::tuple<int*, char, int>, 1, char>();
50 test<std::tuple<int*, char, int>, 2, int>();