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 Types&...);
19 #include <tuple>
32 // Test that tuple(std::allocator_arg, Alloc, Types const&...) allows implicit
34 std::tuple<ImplicitCopy> testImplicitCopy1() {
39 std::tuple<ImplicitCopy> testImplicitCopy2() {
48 std::tuple<int*> t = {std::allocator_arg, std::allocator<void>{}, 0};
51 std::tuple<int> t(std::allocator_arg, A1<int>(), 3);
56 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3));
62 std::tuple<alloc_last> t(std::allocator_arg, A1<int>(5), alloc_last(3));
68 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5),
77 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg,
89 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg,