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

Lines Matching refs:tuple

10 // <tuple>
12 // template <class... Types> class tuple;
14 // template <class... UTypes> tuple(const tuple<UTypes...>& u);
18 #include <tuple>
71 typedef std::tuple<long> T0;
72 typedef std::tuple<long long> T1;
79 typedef std::tuple<int> T0;
80 typedef std::tuple<A> T1;
86 typedef std::tuple<int> T0;
87 typedef std::tuple<C> T1;
94 typedef std::tuple<long, char> T0;
95 typedef std::tuple<long long, int> T1;
102 typedef std::tuple<long, char, D> T0;
103 typedef std::tuple<long long, int, B> T1;
112 typedef std::tuple<long, char, D&> T0;
113 typedef std::tuple<long long, int, B&> T1;
122 typedef std::tuple<long, char, int> T0;
123 typedef std::tuple<long long, int, B> T1;
131 const std::tuple<int> t1(42);
132 std::tuple<Explicit> t2(t1);
136 const std::tuple<int> t1(42);
137 std::tuple<Implicit> t2 = t1;