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

Lines Matching refs:tuple

10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple(allocator_arg_t, const Alloc& a, const tuple<UTypes...>&);
19 #include <tuple>
40 typedef std::tuple<long> T0;
41 typedef std::tuple<long long> T1;
47 typedef std::tuple<int> T0;
48 typedef std::tuple<alloc_first> T1;
56 typedef std::tuple<int, int> T0;
57 typedef std::tuple<alloc_first, alloc_last> T1;
68 typedef std::tuple<long, int, int> T0;
69 typedef std::tuple<long long, alloc_first, alloc_last> T1;
81 const std::tuple<int> t1(42);
82 std::tuple<Explicit> t2{std::allocator_arg, std::allocator<void>{}, t1};
86 const std::tuple<int> t1(42);
87 std::tuple<Implicit> t2 = {std::allocator_arg, std::allocator<void>{}, t1};