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

Lines Matching refs:tuple

10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple& operator=(tuple<UTypes...>&& u);
19 #include <tuple>
50 typedef std::tuple<long> T0;
51 typedef std::tuple<long long> T1;
58 typedef std::tuple<long, char> T0;
59 typedef std::tuple<long long, int> T1;
67 typedef std::tuple<long, char, D> T0;
68 typedef std::tuple<long long, int, B> T1;
79 typedef std::tuple<long, char, D&> T0;
80 typedef std::tuple<long long, int, B&> T1;
89 typedef std::tuple<long, char, std::unique_ptr<D>> T0;
90 typedef std::tuple<long long, int, std::unique_ptr<B>> T1;
99 // Test that tuple evaluates correctly applies an lvalue reference
104 std::tuple<int&&, E> t(std::move(x), E{});
105 std::tuple<int&&, int> t2(std::move(y), 44);