blob: cddb70954ee062e28499a64cc368f32203c05bf5 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- tuple ------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_TUPLE
12#define _LIBCPP_TUPLE
13
14/*
15 tuple synopsis
16
17namespace std
18{
19
20template <class... T>
21class tuple {
22public:
23 constexpr tuple();
Marshall Clowda0a0e82013-07-22 16:02:19 +000024 explicit tuple(const T&...); // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000025 template <class... U>
Marshall Clowda0a0e82013-07-22 16:02:19 +000026 explicit tuple(U&&...); // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000027 tuple(const tuple&) = default;
Howard Hinnanta5e01212011-05-27 19:08:18 +000028 tuple(tuple&&) = default;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000029 template <class... U>
Marshall Clowda0a0e82013-07-22 16:02:19 +000030 tuple(const tuple<U...>&); // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000031 template <class... U>
Marshall Clowda0a0e82013-07-22 16:02:19 +000032 tuple(tuple<U...>&&); // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000033 template <class U1, class U2>
Marshall Clowda0a0e82013-07-22 16:02:19 +000034 tuple(const pair<U1, U2>&); // iff sizeof...(T) == 2 // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000035 template <class U1, class U2>
Marshall Clowda0a0e82013-07-22 16:02:19 +000036 tuple(pair<U1, U2>&&); // iff sizeof...(T) == 2 // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000037
38 // allocator-extended constructors
39 template <class Alloc>
40 tuple(allocator_arg_t, const Alloc& a);
41 template <class Alloc>
42 tuple(allocator_arg_t, const Alloc& a, const T&...);
43 template <class Alloc, class... U>
44 tuple(allocator_arg_t, const Alloc& a, U&&...);
45 template <class Alloc>
46 tuple(allocator_arg_t, const Alloc& a, const tuple&);
47 template <class Alloc>
48 tuple(allocator_arg_t, const Alloc& a, tuple&&);
49 template <class Alloc, class... U>
50 tuple(allocator_arg_t, const Alloc& a, const tuple<U...>&);
51 template <class Alloc, class... U>
52 tuple(allocator_arg_t, const Alloc& a, tuple<U...>&&);
53 template <class Alloc, class U1, class U2>
54 tuple(allocator_arg_t, const Alloc& a, const pair<U1, U2>&);
55 template <class Alloc, class U1, class U2>
56 tuple(allocator_arg_t, const Alloc& a, pair<U1, U2>&&);
57
58 tuple& operator=(const tuple&);
Howard Hinnanta5e01212011-05-27 19:08:18 +000059 tuple&
60 operator=(tuple&&) noexcept(AND(is_nothrow_move_assignable<T>::value ...));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000061 template <class... U>
62 tuple& operator=(const tuple<U...>&);
63 template <class... U>
64 tuple& operator=(tuple<U...>&&);
65 template <class U1, class U2>
66 tuple& operator=(const pair<U1, U2>&); // iff sizeof...(T) == 2
67 template <class U1, class U2>
68 tuple& operator=(pair<U1, U2>&&); //iffsizeof...(T) == 2
69
Howard Hinnanta5e01212011-05-27 19:08:18 +000070 void swap(tuple&) noexcept(AND(swap(declval<T&>(), declval<T&>())...));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000071};
72
73const unspecified ignore;
74
Marshall Clowda0a0e82013-07-22 16:02:19 +000075template <class... T> tuple<V...> make_tuple(T&&...); // constexpr in C++14
Marshall Clow1d927e32013-10-05 18:46:37 +000076template <class... T> tuple<ATypes...> forward_as_tuple(T&&...) noexcept; // constexpr in C++14
Marshall Clow8e554d92014-02-25 16:11:46 +000077template <class... T> tuple<T&...> tie(T&...) noexcept; // constexpr in C++14
Marshall Clowda0a0e82013-07-22 16:02:19 +000078template <class... Tuples> tuple<CTypes...> tuple_cat(Tuples&&... tpls); // constexpr in C++14
Eric Fiselier5839fed2016-07-18 00:35:56 +000079
80// [tuple.apply], calling a function with a tuple of arguments:
81template <class F, class Tuple>
82 constexpr decltype(auto) apply(F&& f, Tuple&& t); // C++17
83template <class T, class Tuple>
84 constexpr T make_from_tuple(Tuple&& t); // C++17
85
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000086// 20.4.1.4, tuple helper classes:
Eric Fiselier40843842017-01-02 23:54:13 +000087template <class T> class tuple_size; // undefined
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000088template <class... T> class tuple_size<tuple<T...>>;
Eric Fiselier5839fed2016-07-18 00:35:56 +000089template <class T>
90 constexpr size_t tuple_size_v = tuple_size<T>::value; // C++17
Marshall Clowa6607572015-11-19 19:45:29 +000091template <size_t I, class T> class tuple_element; // undefined
92template <size_t I, class... T> class tuple_element<I, tuple<T...>>;
93template <size_t I, class T>
94 using tuple_element_t = typename tuple_element <I, T>::type; // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000095
96// 20.4.1.5, element access:
Marshall Clowa6607572015-11-19 19:45:29 +000097template <size_t I, class... T>
Howard Hinnanta5e01212011-05-27 19:08:18 +000098 typename tuple_element<I, tuple<T...>>::type&
Marshall Clow8fc4f5a2013-07-17 18:25:36 +000099 get(tuple<T...>&) noexcept; // constexpr in C++14
Marshall Clowa6607572015-11-19 19:45:29 +0000100template <size_t I, class... T>
101 const typename tuple_element<I, tuple<T...>>::type&
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000102 get(const tuple<T...>&) noexcept; // constexpr in C++14
Marshall Clowa6607572015-11-19 19:45:29 +0000103template <size_t I, class... T>
Howard Hinnanta5e01212011-05-27 19:08:18 +0000104 typename tuple_element<I, tuple<T...>>::type&&
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000105 get(tuple<T...>&&) noexcept; // constexpr in C++14
Eric Fiselier199bee02015-12-18 00:36:55 +0000106template <size_t I, class... T>
107 const typename tuple_element<I, tuple<T...>>::type&&
108 get(const tuple<T...>&&) noexcept; // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000109
Marshall Clowe8029e52013-07-13 02:54:05 +0000110template <class T1, class... T>
111 constexpr T1& get(tuple<T...>&) noexcept; // C++14
112template <class T1, class... T>
Marshall Clowa6607572015-11-19 19:45:29 +0000113 constexpr const T1& get(const tuple<T...>&) noexcept; // C++14
Marshall Clowe8029e52013-07-13 02:54:05 +0000114template <class T1, class... T>
115 constexpr T1&& get(tuple<T...>&&) noexcept; // C++14
Eric Fiselier199bee02015-12-18 00:36:55 +0000116template <class T1, class... T>
117 constexpr const T1&& get(const tuple<T...>&&) noexcept; // C++14
Marshall Clowe8029e52013-07-13 02:54:05 +0000118
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000119// 20.4.1.6, relational operators:
Marshall Clowda0a0e82013-07-22 16:02:19 +0000120template<class... T, class... U> bool operator==(const tuple<T...>&, const tuple<U...>&); // constexpr in C++14
121template<class... T, class... U> bool operator<(const tuple<T...>&, const tuple<U...>&); // constexpr in C++14
122template<class... T, class... U> bool operator!=(const tuple<T...>&, const tuple<U...>&); // constexpr in C++14
123template<class... T, class... U> bool operator>(const tuple<T...>&, const tuple<U...>&); // constexpr in C++14
124template<class... T, class... U> bool operator<=(const tuple<T...>&, const tuple<U...>&); // constexpr in C++14
125template<class... T, class... U> bool operator>=(const tuple<T...>&, const tuple<U...>&); // constexpr in C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000126
127template <class... Types, class Alloc>
128 struct uses_allocator<tuple<Types...>, Alloc>;
129
130template <class... Types>
Howard Hinnanta5e01212011-05-27 19:08:18 +0000131 void
132 swap(tuple<Types...>& x, tuple<Types...>& y) noexcept(noexcept(x.swap(y)));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000133
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000134} // std
135
136*/
137
138#include <__config>
139#include <__tuple>
140#include <cstddef>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000141#include <type_traits>
Howard Hinnant6cc99fa2011-12-19 17:58:44 +0000142#include <__functional_base>
143#include <utility>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000144
Howard Hinnant08e17472011-10-17 20:05:10 +0000145#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000146#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000147#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000148
149_LIBCPP_BEGIN_NAMESPACE_STD
150
151#ifndef _LIBCPP_HAS_NO_VARIADICS
152
Marshall Clow50fe0c72014-03-03 06:18:11 +0000153
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000154// __tuple_leaf
155
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000156template <size_t _Ip, class _Hp,
157 bool=is_empty<_Hp>::value && !__libcpp_is_final<_Hp>::value
Howard Hinnantd4cf2152011-12-11 20:31:33 +0000158 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000159class __tuple_leaf;
160
161template <size_t _Ip, class _Hp, bool _Ep>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000162inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000163void swap(__tuple_leaf<_Ip, _Hp, _Ep>& __x, __tuple_leaf<_Ip, _Hp, _Ep>& __y)
Howard Hinnanta5e01212011-05-27 19:08:18 +0000164 _NOEXCEPT_(__is_nothrow_swappable<_Hp>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000165{
166 swap(__x.get(), __y.get());
167}
168
169template <size_t _Ip, class _Hp, bool>
170class __tuple_leaf
171{
172 _Hp value;
173
Eric Fiselier9c747b92016-07-20 02:57:39 +0000174 template <class _Tp>
175 static constexpr bool __can_bind_reference() {
176 using _RawTp = typename remove_reference<_Tp>::type;
177 using _RawHp = typename remove_reference<_Hp>::type;
178 using _CheckLValueArg = integral_constant<bool,
179 is_lvalue_reference<_Tp>::value
180 || is_same<_RawTp, reference_wrapper<_RawHp>>::value
181 || is_same<_RawTp, reference_wrapper<typename remove_const<_RawHp>::type>>::value
182 >;
183 return !is_reference<_Hp>::value
184 || (is_lvalue_reference<_Hp>::value && _CheckLValueArg::value)
185 || (is_rvalue_reference<_Hp>::value && !is_lvalue_reference<_Tp>::value);
186 }
187
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000188 __tuple_leaf& operator=(const __tuple_leaf&);
189public:
Howard Hinnant4eebfc32012-07-06 20:50:27 +0000190 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR __tuple_leaf()
191 _NOEXCEPT_(is_nothrow_default_constructible<_Hp>::value) : value()
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000192 {static_assert(!is_reference<_Hp>::value,
193 "Attempted to default construct a reference element in a tuple");}
194
195 template <class _Alloc>
196 _LIBCPP_INLINE_VISIBILITY
197 __tuple_leaf(integral_constant<int, 0>, const _Alloc&)
198 : value()
199 {static_assert(!is_reference<_Hp>::value,
200 "Attempted to default construct a reference element in a tuple");}
201
202 template <class _Alloc>
203 _LIBCPP_INLINE_VISIBILITY
204 __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a)
205 : value(allocator_arg_t(), __a)
206 {static_assert(!is_reference<_Hp>::value,
207 "Attempted to default construct a reference element in a tuple");}
208
209 template <class _Alloc>
210 _LIBCPP_INLINE_VISIBILITY
211 __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a)
212 : value(__a)
213 {static_assert(!is_reference<_Hp>::value,
214 "Attempted to default construct a reference element in a tuple");}
215
Howard Hinnante049cc52010-09-27 17:54:17 +0000216 template <class _Tp,
Eric Fiselier9020c082014-07-24 18:48:34 +0000217 class = typename enable_if<
218 __lazy_and<
219 __lazy_not<is_same<typename decay<_Tp>::type, __tuple_leaf>>
220 , is_constructible<_Hp, _Tp>
221 >::value
222 >::type
223 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000224 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnant74f26f22012-07-06 21:53:48 +0000225 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value))
Howard Hinnant0949eed2011-06-30 21:18:19 +0000226 : value(_VSTD::forward<_Tp>(__t))
Eric Fiselier9c747b92016-07-20 02:57:39 +0000227 {static_assert(__can_bind_reference<_Tp>(),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000228 "Attempted to construct a reference element in a tuple with an rvalue");}
229
230 template <class _Tp, class _Alloc>
231 _LIBCPP_INLINE_VISIBILITY
232 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000233 : value(_VSTD::forward<_Tp>(__t))
Eric Fiselier9c747b92016-07-20 02:57:39 +0000234 {static_assert(__can_bind_reference<_Tp>(),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000235 "Attempted to construct a reference element in a tuple with an rvalue");}
236
237 template <class _Tp, class _Alloc>
238 _LIBCPP_INLINE_VISIBILITY
239 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000240 : value(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t))
Eric Fiselier9c747b92016-07-20 02:57:39 +0000241 {static_assert(!is_reference<_Hp>::value,
242 "Attempted to uses-allocator construct a reference element in a tuple");}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000243
244 template <class _Tp, class _Alloc>
245 _LIBCPP_INLINE_VISIBILITY
246 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000247 : value(_VSTD::forward<_Tp>(__t), __a)
Eric Fiselier9c747b92016-07-20 02:57:39 +0000248 {static_assert(!is_reference<_Hp>::value,
249 "Attempted to uses-allocator construct a reference element in a tuple");}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000250
Marshall Clow398c9d82014-04-21 23:48:09 +0000251 __tuple_leaf(const __tuple_leaf& __t) = default;
252 __tuple_leaf(__tuple_leaf&& __t) = default;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000253
254 template <class _Tp>
255 _LIBCPP_INLINE_VISIBILITY
256 __tuple_leaf&
Howard Hinnant74f26f22012-07-06 21:53:48 +0000257 operator=(_Tp&& __t) _NOEXCEPT_((is_nothrow_assignable<_Hp&, _Tp>::value))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000258 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000259 value = _VSTD::forward<_Tp>(__t);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000260 return *this;
261 }
262
263 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta5e01212011-05-27 19:08:18 +0000264 int swap(__tuple_leaf& __t) _NOEXCEPT_(__is_nothrow_swappable<__tuple_leaf>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000265 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000266 _VSTD::swap(*this, __t);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000267 return 0;
268 }
269
Marshall Clowda0a0e82013-07-22 16:02:19 +0000270 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 _Hp& get() _NOEXCEPT {return value;}
271 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 const _Hp& get() const _NOEXCEPT {return value;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000272};
273
274template <size_t _Ip, class _Hp>
275class __tuple_leaf<_Ip, _Hp, true>
276 : private _Hp
277{
278
279 __tuple_leaf& operator=(const __tuple_leaf&);
280public:
Howard Hinnant4eebfc32012-07-06 20:50:27 +0000281 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR __tuple_leaf()
282 _NOEXCEPT_(is_nothrow_default_constructible<_Hp>::value) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000283
284 template <class _Alloc>
285 _LIBCPP_INLINE_VISIBILITY
286 __tuple_leaf(integral_constant<int, 0>, const _Alloc&) {}
287
288 template <class _Alloc>
289 _LIBCPP_INLINE_VISIBILITY
290 __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a)
291 : _Hp(allocator_arg_t(), __a) {}
292
293 template <class _Alloc>
294 _LIBCPP_INLINE_VISIBILITY
295 __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a)
296 : _Hp(__a) {}
297
Howard Hinnante049cc52010-09-27 17:54:17 +0000298 template <class _Tp,
Eric Fiselier9020c082014-07-24 18:48:34 +0000299 class = typename enable_if<
300 __lazy_and<
301 __lazy_not<is_same<typename decay<_Tp>::type, __tuple_leaf>>
302 , is_constructible<_Hp, _Tp>
303 >::value
304 >::type
305 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000306 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnant74f26f22012-07-06 21:53:48 +0000307 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value))
Howard Hinnant0949eed2011-06-30 21:18:19 +0000308 : _Hp(_VSTD::forward<_Tp>(__t)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000309
310 template <class _Tp, class _Alloc>
311 _LIBCPP_INLINE_VISIBILITY
312 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000313 : _Hp(_VSTD::forward<_Tp>(__t)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000314
315 template <class _Tp, class _Alloc>
316 _LIBCPP_INLINE_VISIBILITY
317 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000318 : _Hp(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000319
320 template <class _Tp, class _Alloc>
321 _LIBCPP_INLINE_VISIBILITY
322 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000323 : _Hp(_VSTD::forward<_Tp>(__t), __a) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000324
Eric Fiselier9020c082014-07-24 18:48:34 +0000325 __tuple_leaf(__tuple_leaf const &) = default;
326 __tuple_leaf(__tuple_leaf &&) = default;
327
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000328 template <class _Tp>
329 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000330 __tuple_leaf&
Howard Hinnant74f26f22012-07-06 21:53:48 +0000331 operator=(_Tp&& __t) _NOEXCEPT_((is_nothrow_assignable<_Hp&, _Tp>::value))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000332 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000333 _Hp::operator=(_VSTD::forward<_Tp>(__t));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000334 return *this;
335 }
336
Howard Hinnanta5e01212011-05-27 19:08:18 +0000337 _LIBCPP_INLINE_VISIBILITY
338 int
339 swap(__tuple_leaf& __t) _NOEXCEPT_(__is_nothrow_swappable<__tuple_leaf>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000340 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000341 _VSTD::swap(*this, __t);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000342 return 0;
343 }
344
Marshall Clowda0a0e82013-07-22 16:02:19 +0000345 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 _Hp& get() _NOEXCEPT {return static_cast<_Hp&>(*this);}
346 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 const _Hp& get() const _NOEXCEPT {return static_cast<const _Hp&>(*this);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000347};
348
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000349template <class ..._Tp>
350_LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f26f22012-07-06 21:53:48 +0000351void __swallow(_Tp&&...) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000352
Eric Fiselier55ad3ac2016-04-15 03:29:40 +0000353template <class ..._Tp>
354struct __lazy_all : __all<_Tp::value...> {};
355
Marshall Clowbbc7c742014-10-15 10:33:02 +0000356template <class _Tp>
357struct __all_default_constructible;
Howard Hinnanta5e01212011-05-27 19:08:18 +0000358
Marshall Clowbbc7c742014-10-15 10:33:02 +0000359template <class ..._Tp>
360struct __all_default_constructible<__tuple_types<_Tp...>>
361 : __all<is_default_constructible<_Tp>::value...>
362{ };
Howard Hinnanta5e01212011-05-27 19:08:18 +0000363
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000364// __tuple_impl
365
366template<class _Indx, class ..._Tp> struct __tuple_impl;
367
368template<size_t ..._Indx, class ..._Tp>
369struct __tuple_impl<__tuple_indices<_Indx...>, _Tp...>
370 : public __tuple_leaf<_Indx, _Tp>...
371{
Howard Hinnant5394c1e2012-07-06 20:39:45 +0000372 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant4eebfc32012-07-06 20:50:27 +0000373 _LIBCPP_CONSTEXPR __tuple_impl()
374 _NOEXCEPT_(__all<is_nothrow_default_constructible<_Tp>::value...>::value) {}
Howard Hinnant5394c1e2012-07-06 20:39:45 +0000375
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000376 template <size_t ..._Uf, class ..._Tf,
377 size_t ..._Ul, class ..._Tl, class ..._Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +0000378 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000379 explicit
380 __tuple_impl(__tuple_indices<_Uf...>, __tuple_types<_Tf...>,
381 __tuple_indices<_Ul...>, __tuple_types<_Tl...>,
Howard Hinnant74f26f22012-07-06 21:53:48 +0000382 _Up&&... __u)
383 _NOEXCEPT_((__all<is_nothrow_constructible<_Tf, _Up>::value...>::value &&
384 __all<is_nothrow_default_constructible<_Tl>::value...>::value)) :
Howard Hinnant0949eed2011-06-30 21:18:19 +0000385 __tuple_leaf<_Uf, _Tf>(_VSTD::forward<_Up>(__u))...,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000386 __tuple_leaf<_Ul, _Tl>()...
387 {}
388
389 template <class _Alloc, size_t ..._Uf, class ..._Tf,
390 size_t ..._Ul, class ..._Tl, class ..._Up>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000391 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000392 explicit
393 __tuple_impl(allocator_arg_t, const _Alloc& __a,
394 __tuple_indices<_Uf...>, __tuple_types<_Tf...>,
395 __tuple_indices<_Ul...>, __tuple_types<_Tl...>,
396 _Up&&... __u) :
397 __tuple_leaf<_Uf, _Tf>(__uses_alloc_ctor<_Tf, _Alloc, _Up>(), __a,
Howard Hinnant0949eed2011-06-30 21:18:19 +0000398 _VSTD::forward<_Up>(__u))...,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000399 __tuple_leaf<_Ul, _Tl>(__uses_alloc_ctor<_Tl, _Alloc>(), __a)...
400 {}
401
402 template <class _Tuple,
403 class = typename enable_if
404 <
Howard Hinnant99324892013-04-14 00:01:13 +0000405 __tuple_constructible<_Tuple, tuple<_Tp...> >::value
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000406 >::type
407 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000408 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnant74f26f22012-07-06 21:53:48 +0000409 __tuple_impl(_Tuple&& __t) _NOEXCEPT_((__all<is_nothrow_constructible<_Tp, typename tuple_element<_Indx,
410 typename __make_tuple_types<_Tuple>::type>::type>::value...>::value))
Howard Hinnant0949eed2011-06-30 21:18:19 +0000411 : __tuple_leaf<_Indx, _Tp>(_VSTD::forward<typename tuple_element<_Indx,
412 typename __make_tuple_types<_Tuple>::type>::type>(_VSTD::get<_Indx>(__t)))...
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000413 {}
414
415 template <class _Alloc, class _Tuple,
416 class = typename enable_if
417 <
Eric Fiselier95526d32016-04-19 01:19:25 +0000418 __tuple_constructible<_Tuple, tuple<_Tp...> >::value
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000419 >::type
420 >
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000421 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000422 __tuple_impl(allocator_arg_t, const _Alloc& __a, _Tuple&& __t)
423 : __tuple_leaf<_Indx, _Tp>(__uses_alloc_ctor<_Tp, _Alloc, typename tuple_element<_Indx,
Howard Hinnant324bb032010-08-22 00:02:43 +0000424 typename __make_tuple_types<_Tuple>::type>::type>(), __a,
Howard Hinnant0949eed2011-06-30 21:18:19 +0000425 _VSTD::forward<typename tuple_element<_Indx,
426 typename __make_tuple_types<_Tuple>::type>::type>(_VSTD::get<_Indx>(__t)))...
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000427 {}
428
429 template <class _Tuple>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000430 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000431 typename enable_if
432 <
Howard Hinnantf83417b2011-01-24 16:07:25 +0000433 __tuple_assignable<_Tuple, tuple<_Tp...> >::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000434 __tuple_impl&
435 >::type
Howard Hinnant74f26f22012-07-06 21:53:48 +0000436 operator=(_Tuple&& __t) _NOEXCEPT_((__all<is_nothrow_assignable<_Tp&, typename tuple_element<_Indx,
437 typename __make_tuple_types<_Tuple>::type>::type>::value...>::value))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000438 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000439 __swallow(__tuple_leaf<_Indx, _Tp>::operator=(_VSTD::forward<typename tuple_element<_Indx,
440 typename __make_tuple_types<_Tuple>::type>::type>(_VSTD::get<_Indx>(__t)))...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000441 return *this;
442 }
443
Howard Hinnant3de50862013-11-06 17:45:43 +0000444 __tuple_impl(const __tuple_impl&) = default;
445 __tuple_impl(__tuple_impl&&) = default;
446
447 _LIBCPP_INLINE_VISIBILITY
448 __tuple_impl&
449 operator=(const __tuple_impl& __t) _NOEXCEPT_((__all<is_nothrow_copy_assignable<_Tp>::value...>::value))
450 {
451 __swallow(__tuple_leaf<_Indx, _Tp>::operator=(static_cast<const __tuple_leaf<_Indx, _Tp>&>(__t).get())...);
452 return *this;
453 }
454
455 _LIBCPP_INLINE_VISIBILITY
456 __tuple_impl&
457 operator=(__tuple_impl&& __t) _NOEXCEPT_((__all<is_nothrow_move_assignable<_Tp>::value...>::value))
458 {
459 __swallow(__tuple_leaf<_Indx, _Tp>::operator=(_VSTD::forward<_Tp>(static_cast<__tuple_leaf<_Indx, _Tp>&>(__t).get()))...);
460 return *this;
461 }
Howard Hinnant28484442012-02-15 20:13:52 +0000462
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000463 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000464 void swap(__tuple_impl& __t)
Howard Hinnanta5e01212011-05-27 19:08:18 +0000465 _NOEXCEPT_(__all<__is_nothrow_swappable<_Tp>::value...>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000466 {
467 __swallow(__tuple_leaf<_Indx, _Tp>::swap(static_cast<__tuple_leaf<_Indx, _Tp>&>(__t))...);
468 }
469};
470
Eric Fiselierd5019332016-04-15 18:05:59 +0000471
Eric Fiselierd5019332016-04-15 18:05:59 +0000472
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000473template <class ..._Tp>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000474class _LIBCPP_TEMPLATE_VIS tuple
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000475{
476 typedef __tuple_impl<typename __make_tuple_indices<sizeof...(_Tp)>::type, _Tp...> base;
477
478 base base_;
479
Eric Fiselierf2f36372016-12-08 23:57:08 +0000480#if defined(_LIBCPP_ENABLE_TUPLE_IMPLICIT_REDUCED_ARITY_EXTENSION)
481 static constexpr bool _EnableImplicitReducedArityExtension = true;
482#else
483 static constexpr bool _EnableImplicitReducedArityExtension = false;
484#endif
485
Eric Fiselierd5019332016-04-15 18:05:59 +0000486 template <class ..._Args>
487 struct _PackExpandsToThisTuple : false_type {};
488
489 template <class _Arg>
490 struct _PackExpandsToThisTuple<_Arg>
491 : is_same<typename __uncvref<_Arg>::type, tuple> {};
492
493 template <bool _MaybeEnable, class _Dummy = void>
494 struct _CheckArgsConstructor : __check_tuple_constructor_fail {};
495
496 template <class _Dummy>
497 struct _CheckArgsConstructor<true, _Dummy>
498 {
499 template <class ..._Args>
Eric Fiseliere1445fd2016-07-25 04:32:07 +0000500 static constexpr bool __enable_default() {
501 return __all<is_default_constructible<_Args>::value...>::value;
502 }
503
504 template <class ..._Args>
Eric Fiselierd5019332016-04-15 18:05:59 +0000505 static constexpr bool __enable_explicit() {
506 return
507 __tuple_constructible<
508 tuple<_Args...>,
509 typename __make_tuple_types<tuple,
510 sizeof...(_Args) < sizeof...(_Tp) ?
511 sizeof...(_Args) :
512 sizeof...(_Tp)>::type
513 >::value &&
514 !__tuple_convertible<
515 tuple<_Args...>,
516 typename __make_tuple_types<tuple,
517 sizeof...(_Args) < sizeof...(_Tp) ?
518 sizeof...(_Args) :
519 sizeof...(_Tp)>::type
520 >::value &&
521 __all_default_constructible<
522 typename __make_tuple_types<tuple, sizeof...(_Tp),
523 sizeof...(_Args) < sizeof...(_Tp) ?
524 sizeof...(_Args) :
525 sizeof...(_Tp)>::type
526 >::value;
527 }
528
529 template <class ..._Args>
530 static constexpr bool __enable_implicit() {
531 return
532 __tuple_convertible<
533 tuple<_Args...>,
534 typename __make_tuple_types<tuple,
535 sizeof...(_Args) < sizeof...(_Tp) ?
536 sizeof...(_Args) :
537 sizeof...(_Tp)>::type
538 >::value &&
539 __all_default_constructible<
540 typename __make_tuple_types<tuple, sizeof...(_Tp),
541 sizeof...(_Args) < sizeof...(_Tp) ?
542 sizeof...(_Args) :
543 sizeof...(_Tp)>::type
544 >::value;
545 }
546 };
547
548 template <bool _MaybeEnable,
549 bool = sizeof...(_Tp) == 1,
550 class _Dummy = void>
551 struct _CheckTupleLikeConstructor : __check_tuple_constructor_fail {};
552
553 template <class _Dummy>
554 struct _CheckTupleLikeConstructor<true, false, _Dummy>
555 {
556 template <class _Tuple>
557 static constexpr bool __enable_implicit() {
Eric Fiselier9663ee42016-12-15 06:34:54 +0000558 return __tuple_convertible<_Tuple, tuple>::value;
Eric Fiselierd5019332016-04-15 18:05:59 +0000559 }
560
561 template <class _Tuple>
562 static constexpr bool __enable_explicit() {
Eric Fiselier9663ee42016-12-15 06:34:54 +0000563 return __tuple_constructible<_Tuple, tuple>::value
564 && !__tuple_convertible<_Tuple, tuple>::value;
Eric Fiselierd5019332016-04-15 18:05:59 +0000565 }
566 };
567
568 template <class _Dummy>
569 struct _CheckTupleLikeConstructor<true, true, _Dummy>
570 {
571 // This trait is used to disable the tuple-like constructor when
572 // the UTypes... constructor should be selected instead.
573 // See LWG issue #2549.
574 template <class _Tuple>
575 using _PreferTupleLikeConstructor = __lazy_or<
576 // Don't attempt the two checks below if the tuple we are given
577 // has the same type as this tuple.
578 is_same<typename __uncvref<_Tuple>::type, tuple>,
579 __lazy_and<
580 __lazy_not<is_constructible<_Tp..., _Tuple>>,
581 __lazy_not<is_convertible<_Tuple, _Tp...>>
582 >
583 >;
584
585 template <class _Tuple>
586 static constexpr bool __enable_implicit() {
587 return __lazy_and<
588 __tuple_convertible<_Tuple, tuple>,
589 _PreferTupleLikeConstructor<_Tuple>
590 >::value;
591 }
592
593 template <class _Tuple>
594 static constexpr bool __enable_explicit() {
595 return __lazy_and<
596 __tuple_constructible<_Tuple, tuple>,
597 _PreferTupleLikeConstructor<_Tuple>,
598 __lazy_not<__tuple_convertible<_Tuple, tuple>>
599 >::value;
600 }
601 };
602
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000603 template <size_t _Jp, class ..._Up> friend _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantec3773c2011-12-01 20:21:04 +0000604 typename tuple_element<_Jp, tuple<_Up...> >::type& get(tuple<_Up...>&) _NOEXCEPT;
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000605 template <size_t _Jp, class ..._Up> friend _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantec3773c2011-12-01 20:21:04 +0000606 const typename tuple_element<_Jp, tuple<_Up...> >::type& get(const tuple<_Up...>&) _NOEXCEPT;
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000607 template <size_t _Jp, class ..._Up> friend _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantec3773c2011-12-01 20:21:04 +0000608 typename tuple_element<_Jp, tuple<_Up...> >::type&& get(tuple<_Up...>&&) _NOEXCEPT;
Eric Fiselier199bee02015-12-18 00:36:55 +0000609 template <size_t _Jp, class ..._Up> friend _LIBCPP_CONSTEXPR_AFTER_CXX11
610 const typename tuple_element<_Jp, tuple<_Up...> >::type&& get(const tuple<_Up...>&&) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000611public:
612
Eric Fiselierda1818a2015-02-21 02:30:41 +0000613 template <bool _Dummy = true, class = typename enable_if<
Eric Fiseliere1445fd2016-07-25 04:32:07 +0000614 _CheckArgsConstructor<_Dummy>::template __enable_default<_Tp...>()
Marshall Clowbbc7c742014-10-15 10:33:02 +0000615 >::type>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000616 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant4eebfc32012-07-06 20:50:27 +0000617 _LIBCPP_CONSTEXPR tuple()
618 _NOEXCEPT_(__all<is_nothrow_default_constructible<_Tp>::value...>::value) {}
Howard Hinnant5394c1e2012-07-06 20:39:45 +0000619
Eric Fiselier4be71c62016-07-25 02:36:42 +0000620 tuple(tuple const&) = default;
621 tuple(tuple&&) = default;
622
Eric Fiselier55ad3ac2016-04-15 03:29:40 +0000623 template <class _AllocArgT, class _Alloc, bool _Dummy = true, class = typename enable_if<
624 __lazy_and<
Eric Fiselierfa5a1052016-06-21 23:19:13 +0000625 is_same<allocator_arg_t, _AllocArgT>,
Eric Fiselier55ad3ac2016-04-15 03:29:40 +0000626 __lazy_all<__dependent_type<is_default_constructible<_Tp>, _Dummy>...>
627 >::value
628 >::type>
629 _LIBCPP_INLINE_VISIBILITY
630 tuple(_AllocArgT, _Alloc const& __a)
631 : base_(allocator_arg_t(), __a,
632 __tuple_indices<>(), __tuple_types<>(),
633 typename __make_tuple_indices<sizeof...(_Tp), 0>::type(),
634 __tuple_types<_Tp...>()) {}
635
Eric Fiselier95526d32016-04-19 01:19:25 +0000636 template <bool _Dummy = true,
637 typename enable_if
638 <
639 _CheckArgsConstructor<
640 _Dummy
Eric Fiselierfc044a12016-11-13 19:54:31 +0000641 >::template __enable_implicit<_Tp const&...>(),
Eric Fiselier95526d32016-04-19 01:19:25 +0000642 bool
643 >::type = false
644 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000645 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Eric Fiselier95526d32016-04-19 01:19:25 +0000646 tuple(const _Tp& ... __t) _NOEXCEPT_((__all<is_nothrow_copy_constructible<_Tp>::value...>::value))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000647 : base_(typename __make_tuple_indices<sizeof...(_Tp)>::type(),
648 typename __make_tuple_types<tuple, sizeof...(_Tp)>::type(),
649 typename __make_tuple_indices<0>::type(),
650 typename __make_tuple_types<tuple, 0>::type(),
651 __t...
652 ) {}
653
Eric Fiselier95526d32016-04-19 01:19:25 +0000654 template <bool _Dummy = true,
655 typename enable_if
656 <
657 _CheckArgsConstructor<
658 _Dummy
Eric Fiselierfc044a12016-11-13 19:54:31 +0000659 >::template __enable_explicit<_Tp const&...>(),
Eric Fiselier95526d32016-04-19 01:19:25 +0000660 bool
661 >::type = false
662 >
663 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
664 explicit tuple(const _Tp& ... __t) _NOEXCEPT_((__all<is_nothrow_copy_constructible<_Tp>::value...>::value))
665 : base_(typename __make_tuple_indices<sizeof...(_Tp)>::type(),
666 typename __make_tuple_types<tuple, sizeof...(_Tp)>::type(),
667 typename __make_tuple_indices<0>::type(),
668 typename __make_tuple_types<tuple, 0>::type(),
669 __t...
670 ) {}
671
672 template <class _Alloc, bool _Dummy = true,
673 typename enable_if
674 <
675 _CheckArgsConstructor<
676 _Dummy
Eric Fiselierfc044a12016-11-13 19:54:31 +0000677 >::template __enable_implicit<_Tp const&...>(),
Eric Fiselier95526d32016-04-19 01:19:25 +0000678 bool
679 >::type = false
680 >
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000681 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000682 tuple(allocator_arg_t, const _Alloc& __a, const _Tp& ... __t)
683 : base_(allocator_arg_t(), __a,
684 typename __make_tuple_indices<sizeof...(_Tp)>::type(),
685 typename __make_tuple_types<tuple, sizeof...(_Tp)>::type(),
686 typename __make_tuple_indices<0>::type(),
687 typename __make_tuple_types<tuple, 0>::type(),
688 __t...
689 ) {}
690
Eric Fiselier95526d32016-04-19 01:19:25 +0000691 template <class _Alloc, bool _Dummy = true,
692 typename enable_if
693 <
694 _CheckArgsConstructor<
695 _Dummy
Eric Fiselierfc044a12016-11-13 19:54:31 +0000696 >::template __enable_explicit<_Tp const&...>(),
Eric Fiselier95526d32016-04-19 01:19:25 +0000697 bool
698 >::type = false
699 >
700 _LIBCPP_INLINE_VISIBILITY
701 explicit
702 tuple(allocator_arg_t, const _Alloc& __a, const _Tp& ... __t)
703 : base_(allocator_arg_t(), __a,
704 typename __make_tuple_indices<sizeof...(_Tp)>::type(),
705 typename __make_tuple_types<tuple, sizeof...(_Tp)>::type(),
706 typename __make_tuple_indices<0>::type(),
707 typename __make_tuple_types<tuple, 0>::type(),
708 __t...
709 ) {}
710
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000711 template <class ..._Up,
Eric Fiselierf2f36372016-12-08 23:57:08 +0000712 bool _PackIsTuple = _PackExpandsToThisTuple<_Up...>::value,
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000713 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000714 <
Eric Fiselierd5019332016-04-15 18:05:59 +0000715 _CheckArgsConstructor<
Eric Fiselierf2f36372016-12-08 23:57:08 +0000716 sizeof...(_Up) == sizeof...(_Tp)
717 && !_PackIsTuple
718 >::template __enable_implicit<_Up...>() ||
719 _CheckArgsConstructor<
720 _EnableImplicitReducedArityExtension
721 && sizeof...(_Up) < sizeof...(_Tp)
722 && !_PackIsTuple
Eric Fiselierd5019332016-04-15 18:05:59 +0000723 >::template __enable_implicit<_Up...>(),
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000724 bool
725 >::type = false
726 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000727 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000728 tuple(_Up&&... __u)
Howard Hinnant74f26f22012-07-06 21:53:48 +0000729 _NOEXCEPT_((
Marshall Clow86d311c2014-09-16 17:08:21 +0000730 is_nothrow_constructible<base,
Howard Hinnant74f26f22012-07-06 21:53:48 +0000731 typename __make_tuple_indices<sizeof...(_Up)>::type,
732 typename __make_tuple_types<tuple, sizeof...(_Up)>::type,
733 typename __make_tuple_indices<sizeof...(_Tp), sizeof...(_Up)>::type,
734 typename __make_tuple_types<tuple, sizeof...(_Tp), sizeof...(_Up)>::type,
Marshall Clow86d311c2014-09-16 17:08:21 +0000735 _Up...
Howard Hinnant74f26f22012-07-06 21:53:48 +0000736 >::value
737 ))
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000738 : base_(typename __make_tuple_indices<sizeof...(_Up)>::type(),
739 typename __make_tuple_types<tuple, sizeof...(_Up)>::type(),
740 typename __make_tuple_indices<sizeof...(_Tp), sizeof...(_Up)>::type(),
741 typename __make_tuple_types<tuple, sizeof...(_Tp), sizeof...(_Up)>::type(),
742 _VSTD::forward<_Up>(__u)...) {}
743
744 template <class ..._Up,
745 typename enable_if
746 <
Eric Fiselierd5019332016-04-15 18:05:59 +0000747 _CheckArgsConstructor<
748 sizeof...(_Up) <= sizeof...(_Tp)
749 && !_PackExpandsToThisTuple<_Up...>::value
Eric Fiselierf2f36372016-12-08 23:57:08 +0000750 >::template __enable_explicit<_Up...>() ||
751 _CheckArgsConstructor<
752 !_EnableImplicitReducedArityExtension
753 && sizeof...(_Up) < sizeof...(_Tp)
754 && !_PackExpandsToThisTuple<_Up...>()
755 >::template __enable_implicit<_Up...>(),
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000756 bool
Eric Fiselierd5019332016-04-15 18:05:59 +0000757 >::type = false
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000758 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000759 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000760 explicit
761 tuple(_Up&&... __u)
Howard Hinnant74f26f22012-07-06 21:53:48 +0000762 _NOEXCEPT_((
Marshall Clow86d311c2014-09-16 17:08:21 +0000763 is_nothrow_constructible<base,
Howard Hinnant74f26f22012-07-06 21:53:48 +0000764 typename __make_tuple_indices<sizeof...(_Up)>::type,
765 typename __make_tuple_types<tuple, sizeof...(_Up)>::type,
766 typename __make_tuple_indices<sizeof...(_Tp), sizeof...(_Up)>::type,
767 typename __make_tuple_types<tuple, sizeof...(_Tp), sizeof...(_Up)>::type,
768 _Up...
769 >::value
770 ))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000771 : base_(typename __make_tuple_indices<sizeof...(_Up)>::type(),
772 typename __make_tuple_types<tuple, sizeof...(_Up)>::type(),
773 typename __make_tuple_indices<sizeof...(_Tp), sizeof...(_Up)>::type(),
774 typename __make_tuple_types<tuple, sizeof...(_Tp), sizeof...(_Up)>::type(),
Howard Hinnant0949eed2011-06-30 21:18:19 +0000775 _VSTD::forward<_Up>(__u)...) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000776
777 template <class _Alloc, class ..._Up,
Eric Fiselier95526d32016-04-19 01:19:25 +0000778 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000779 <
Eric Fiselierd5019332016-04-15 18:05:59 +0000780 _CheckArgsConstructor<
781 sizeof...(_Up) == sizeof...(_Tp) &&
782 !_PackExpandsToThisTuple<_Up...>::value
Eric Fiselier95526d32016-04-19 01:19:25 +0000783 >::template __enable_implicit<_Up...>(),
784 bool
785 >::type = false
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000786 >
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000787 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000788 tuple(allocator_arg_t, const _Alloc& __a, _Up&&... __u)
789 : base_(allocator_arg_t(), __a,
790 typename __make_tuple_indices<sizeof...(_Up)>::type(),
791 typename __make_tuple_types<tuple, sizeof...(_Up)>::type(),
792 typename __make_tuple_indices<sizeof...(_Tp), sizeof...(_Up)>::type(),
793 typename __make_tuple_types<tuple, sizeof...(_Tp), sizeof...(_Up)>::type(),
Howard Hinnant0949eed2011-06-30 21:18:19 +0000794 _VSTD::forward<_Up>(__u)...) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000795
Eric Fiselier95526d32016-04-19 01:19:25 +0000796 template <class _Alloc, class ..._Up,
797 typename enable_if
798 <
799 _CheckArgsConstructor<
800 sizeof...(_Up) == sizeof...(_Tp) &&
801 !_PackExpandsToThisTuple<_Up...>::value
802 >::template __enable_explicit<_Up...>(),
803 bool
804 >::type = false
805 >
806 _LIBCPP_INLINE_VISIBILITY
807 explicit
808 tuple(allocator_arg_t, const _Alloc& __a, _Up&&... __u)
809 : base_(allocator_arg_t(), __a,
810 typename __make_tuple_indices<sizeof...(_Up)>::type(),
811 typename __make_tuple_types<tuple, sizeof...(_Up)>::type(),
812 typename __make_tuple_indices<sizeof...(_Tp), sizeof...(_Up)>::type(),
813 typename __make_tuple_types<tuple, sizeof...(_Tp), sizeof...(_Up)>::type(),
814 _VSTD::forward<_Up>(__u)...) {}
815
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000816 template <class _Tuple,
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000817 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000818 <
Eric Fiselierd5019332016-04-15 18:05:59 +0000819 _CheckTupleLikeConstructor<
Eric Fiselier9663ee42016-12-15 06:34:54 +0000820 __tuple_like_with_size<_Tuple, sizeof...(_Tp)>::value
821 && !_PackExpandsToThisTuple<_Tuple>::value
822 >::template __enable_implicit<_Tuple>(),
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000823 bool
824 >::type = false
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000825 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000826 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Eric Fiselier9663ee42016-12-15 06:34:54 +0000827 tuple(_Tuple&& __t) _NOEXCEPT_((is_nothrow_constructible<base, _Tuple>::value))
828 : base_(_VSTD::forward<_Tuple>(__t)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000829
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000830 template <class _Tuple,
831 typename enable_if
832 <
Eric Fiselierd5019332016-04-15 18:05:59 +0000833 _CheckTupleLikeConstructor<
Eric Fiselier9663ee42016-12-15 06:34:54 +0000834 __tuple_like_with_size<_Tuple, sizeof...(_Tp)>::value
835 && !_PackExpandsToThisTuple<_Tuple>::value
836 >::template __enable_explicit<_Tuple>(),
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000837 bool
838 >::type = false
839 >
Marshall Clowda0a0e82013-07-22 16:02:19 +0000840 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000841 explicit
Eric Fiselier9663ee42016-12-15 06:34:54 +0000842 tuple(_Tuple&& __t) _NOEXCEPT_((is_nothrow_constructible<base, _Tuple>::value))
843 : base_(_VSTD::forward<_Tuple>(__t)) {}
Howard Hinnantdc1345f2012-04-01 23:10:42 +0000844
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000845 template <class _Alloc, class _Tuple,
Eric Fiselier95526d32016-04-19 01:19:25 +0000846 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000847 <
Eric Fiselierd5019332016-04-15 18:05:59 +0000848 _CheckTupleLikeConstructor<
Eric Fiselier9663ee42016-12-15 06:34:54 +0000849 __tuple_like_with_size<_Tuple, sizeof...(_Tp)>::value
850 >::template __enable_implicit<_Tuple>(),
Eric Fiselier95526d32016-04-19 01:19:25 +0000851 bool
852 >::type = false
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000853 >
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000854 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000855 tuple(allocator_arg_t, const _Alloc& __a, _Tuple&& __t)
Eric Fiselier9663ee42016-12-15 06:34:54 +0000856 : base_(allocator_arg_t(), __a, _VSTD::forward<_Tuple>(__t)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000857
Eric Fiselier95526d32016-04-19 01:19:25 +0000858 template <class _Alloc, class _Tuple,
859 typename enable_if
860 <
861 _CheckTupleLikeConstructor<
Eric Fiselier9663ee42016-12-15 06:34:54 +0000862 __tuple_like_with_size<_Tuple, sizeof...(_Tp)>::value
863 >::template __enable_explicit<_Tuple>(),
Eric Fiselier95526d32016-04-19 01:19:25 +0000864 bool
865 >::type = false
866 >
867 _LIBCPP_INLINE_VISIBILITY
868 explicit
869 tuple(allocator_arg_t, const _Alloc& __a, _Tuple&& __t)
Eric Fiselier9663ee42016-12-15 06:34:54 +0000870 : base_(allocator_arg_t(), __a, _VSTD::forward<_Tuple>(__t)) {}
Eric Fiselier95526d32016-04-19 01:19:25 +0000871
Eric Fiselier4be71c62016-07-25 02:36:42 +0000872 using _CanCopyAssign = __all<is_copy_assignable<_Tp>::value...>;
873 using _CanMoveAssign = __all<is_move_assignable<_Tp>::value...>;
874
875 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier9663ee42016-12-15 06:34:54 +0000876 tuple& operator=(typename conditional<_CanCopyAssign::value, tuple, __nat>::type const& __t)
Eric Fiselier4be71c62016-07-25 02:36:42 +0000877 _NOEXCEPT_((__all<is_nothrow_copy_assignable<_Tp>::value...>::value))
878 {
879 base_.operator=(__t.base_);
880 return *this;
881 }
882
883 _LIBCPP_INLINE_VISIBILITY
884 tuple& operator=(typename conditional<_CanMoveAssign::value, tuple, __nat>::type&& __t)
885 _NOEXCEPT_((__all<is_nothrow_move_assignable<_Tp>::value...>::value))
886 {
887 base_.operator=(static_cast<base&&>(__t.base_));
888 return *this;
889 }
890
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000891 template <class _Tuple,
892 class = typename enable_if
893 <
Eric Fiselier9663ee42016-12-15 06:34:54 +0000894 __tuple_assignable<_Tuple, tuple>::value
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000895 >::type
896 >
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000897 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000898 tuple&
Eric Fiselier9663ee42016-12-15 06:34:54 +0000899 operator=(_Tuple&& __t) _NOEXCEPT_((is_nothrow_assignable<base&, _Tuple>::value))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000900 {
Eric Fiselier9663ee42016-12-15 06:34:54 +0000901 base_.operator=(_VSTD::forward<_Tuple>(__t));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000902 return *this;
903 }
904
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000905 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta5e01212011-05-27 19:08:18 +0000906 void swap(tuple& __t) _NOEXCEPT_(__all<__is_nothrow_swappable<_Tp>::value...>::value)
907 {base_.swap(__t.base_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000908};
909
910template <>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000911class _LIBCPP_TEMPLATE_VIS tuple<>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000912{
913public:
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000914 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant4eebfc32012-07-06 20:50:27 +0000915 _LIBCPP_CONSTEXPR tuple() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000916 template <class _Alloc>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000917 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f26f22012-07-06 21:53:48 +0000918 tuple(allocator_arg_t, const _Alloc&) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000919 template <class _Alloc>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000920 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f26f22012-07-06 21:53:48 +0000921 tuple(allocator_arg_t, const _Alloc&, const tuple&) _NOEXCEPT {}
Howard Hinnant99968442011-11-29 18:15:50 +0000922 template <class _Up>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000923 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f26f22012-07-06 21:53:48 +0000924 tuple(array<_Up, 0>) _NOEXCEPT {}
Howard Hinnant99968442011-11-29 18:15:50 +0000925 template <class _Alloc, class _Up>
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000926 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f26f22012-07-06 21:53:48 +0000927 tuple(allocator_arg_t, const _Alloc&, array<_Up, 0>) _NOEXCEPT {}
Howard Hinnantee6ccd02010-09-23 18:58:28 +0000928 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta5e01212011-05-27 19:08:18 +0000929 void swap(tuple&) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000930};
931
932template <class ..._Tp>
933inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantaabf2872011-06-01 19:59:32 +0000934typename enable_if
935<
936 __all<__is_swappable<_Tp>::value...>::value,
937 void
938>::type
Howard Hinnanta5e01212011-05-27 19:08:18 +0000939swap(tuple<_Tp...>& __t, tuple<_Tp...>& __u)
940 _NOEXCEPT_(__all<__is_nothrow_swappable<_Tp>::value...>::value)
941 {__t.swap(__u);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000942
943// get
944
945template <size_t _Ip, class ..._Tp>
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000946inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantf83417b2011-01-24 16:07:25 +0000947typename tuple_element<_Ip, tuple<_Tp...> >::type&
Howard Hinnantec3773c2011-12-01 20:21:04 +0000948get(tuple<_Tp...>& __t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000949{
Howard Hinnantf83417b2011-01-24 16:07:25 +0000950 typedef typename tuple_element<_Ip, tuple<_Tp...> >::type type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000951 return static_cast<__tuple_leaf<_Ip, type>&>(__t.base_).get();
952}
953
954template <size_t _Ip, class ..._Tp>
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000955inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantf83417b2011-01-24 16:07:25 +0000956const typename tuple_element<_Ip, tuple<_Tp...> >::type&
Howard Hinnantec3773c2011-12-01 20:21:04 +0000957get(const tuple<_Tp...>& __t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000958{
Howard Hinnantf83417b2011-01-24 16:07:25 +0000959 typedef typename tuple_element<_Ip, tuple<_Tp...> >::type type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000960 return static_cast<const __tuple_leaf<_Ip, type>&>(__t.base_).get();
961}
962
Howard Hinnantcd2254b2010-11-17 19:52:17 +0000963template <size_t _Ip, class ..._Tp>
Marshall Clow8fc4f5a2013-07-17 18:25:36 +0000964inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantf83417b2011-01-24 16:07:25 +0000965typename tuple_element<_Ip, tuple<_Tp...> >::type&&
Howard Hinnantec3773c2011-12-01 20:21:04 +0000966get(tuple<_Tp...>&& __t) _NOEXCEPT
Howard Hinnantcd2254b2010-11-17 19:52:17 +0000967{
Howard Hinnantf83417b2011-01-24 16:07:25 +0000968 typedef typename tuple_element<_Ip, tuple<_Tp...> >::type type;
Howard Hinnant56a85ca2011-01-25 16:31:30 +0000969 return static_cast<type&&>(
Douglas Gregor6c669942011-01-25 16:14:21 +0000970 static_cast<__tuple_leaf<_Ip, type>&&>(__t.base_).get());
Howard Hinnantcd2254b2010-11-17 19:52:17 +0000971}
972
Eric Fiselier199bee02015-12-18 00:36:55 +0000973template <size_t _Ip, class ..._Tp>
974inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
975const typename tuple_element<_Ip, tuple<_Tp...> >::type&&
976get(const tuple<_Tp...>&& __t) _NOEXCEPT
977{
978 typedef typename tuple_element<_Ip, tuple<_Tp...> >::type type;
979 return static_cast<const type&&>(
980 static_cast<const __tuple_leaf<_Ip, type>&&>(__t.base_).get());
981}
982
Marshall Clowe8029e52013-07-13 02:54:05 +0000983#if _LIBCPP_STD_VER > 11
Marshall Clowe8029e52013-07-13 02:54:05 +0000984
Eric Fiselier22c3e762016-07-02 03:18:30 +0000985namespace __find_detail {
Marshall Clowe8029e52013-07-13 02:54:05 +0000986
Eric Fiselier22c3e762016-07-02 03:18:30 +0000987static constexpr size_t __not_found = -1;
988static constexpr size_t __ambiguous = __not_found - 1;
Marshall Clowe8029e52013-07-13 02:54:05 +0000989
Eric Fiselier22c3e762016-07-02 03:18:30 +0000990inline _LIBCPP_INLINE_VISIBILITY
991constexpr size_t __find_idx_return(size_t __curr_i, size_t __res, bool __matches) {
992 return !__matches ? __res :
993 (__res == __not_found ? __curr_i : __ambiguous);
994}
Marshall Clowe8029e52013-07-13 02:54:05 +0000995
Eric Fiselier22c3e762016-07-02 03:18:30 +0000996template <size_t _Nx>
997inline _LIBCPP_INLINE_VISIBILITY
998constexpr size_t __find_idx(size_t __i, const bool (&__matches)[_Nx]) {
999 return __i == _Nx ? __not_found :
1000 __find_idx_return(__i, __find_idx(__i + 1, __matches), __matches[__i]);
1001}
1002
1003template <class _T1, class ..._Args>
1004struct __find_exactly_one_checked {
1005 static constexpr bool __matches[] = {is_same<_T1, _Args>::value...};
1006 static constexpr size_t value = __find_detail::__find_idx(0, __matches);
1007 static_assert (value != __not_found, "type not found in type list" );
1008 static_assert(value != __ambiguous,"type occurs more than once in type list");
1009};
1010
Eric Fiselier990090f2016-07-02 03:46:08 +00001011template <class _T1>
1012struct __find_exactly_one_checked<_T1> {
1013 static_assert(!is_same<_T1, _T1>::value, "type not in empty type list");
1014};
1015
Eric Fiselier22c3e762016-07-02 03:18:30 +00001016} // namespace __find_detail;
Marshall Clowe8029e52013-07-13 02:54:05 +00001017
1018template <typename _T1, typename... _Args>
Eric Fiselier22c3e762016-07-02 03:18:30 +00001019struct __find_exactly_one_t
1020 : public __find_detail::__find_exactly_one_checked<_T1, _Args...> {
1021};
Marshall Clowe8029e52013-07-13 02:54:05 +00001022
1023template <class _T1, class... _Args>
1024inline _LIBCPP_INLINE_VISIBILITY
1025constexpr _T1& get(tuple<_Args...>& __tup) noexcept
1026{
1027 return _VSTD::get<__find_exactly_one_t<_T1, _Args...>::value>(__tup);
1028}
1029
1030template <class _T1, class... _Args>
1031inline _LIBCPP_INLINE_VISIBILITY
1032constexpr _T1 const& get(tuple<_Args...> const& __tup) noexcept
1033{
1034 return _VSTD::get<__find_exactly_one_t<_T1, _Args...>::value>(__tup);
1035}
1036
1037template <class _T1, class... _Args>
1038inline _LIBCPP_INLINE_VISIBILITY
1039constexpr _T1&& get(tuple<_Args...>&& __tup) noexcept
1040{
Marshall Clow01a0e902013-07-15 20:46:11 +00001041 return _VSTD::get<__find_exactly_one_t<_T1, _Args...>::value>(_VSTD::move(__tup));
Marshall Clowe8029e52013-07-13 02:54:05 +00001042}
1043
Eric Fiselier199bee02015-12-18 00:36:55 +00001044template <class _T1, class... _Args>
1045inline _LIBCPP_INLINE_VISIBILITY
1046constexpr _T1 const&& get(tuple<_Args...> const&& __tup) noexcept
1047{
1048 return _VSTD::get<__find_exactly_one_t<_T1, _Args...>::value>(_VSTD::move(__tup));
1049}
1050
Marshall Clowe8029e52013-07-13 02:54:05 +00001051#endif
1052
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001053// tie
1054
1055template <class ..._Tp>
Marshall Clow8e554d92014-02-25 16:11:46 +00001056inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001057tuple<_Tp&...>
Howard Hinnant74f26f22012-07-06 21:53:48 +00001058tie(_Tp&... __t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001059{
1060 return tuple<_Tp&...>(__t...);
1061}
1062
1063template <class _Up>
1064struct __ignore_t
1065{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001066 template <class _Tp>
Howard Hinnantee6ccd02010-09-23 18:58:28 +00001067 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001068 const __ignore_t& operator=(_Tp&&) const {return *this;}
1069};
1070
1071namespace { const __ignore_t<unsigned char> ignore = __ignore_t<unsigned char>(); }
1072
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001073template <class _Tp>
Marshall Clowa71f9562014-01-03 22:55:49 +00001074struct __make_tuple_return_impl
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001075{
1076 typedef _Tp type;
1077};
1078
1079template <class _Tp>
Marshall Clowa71f9562014-01-03 22:55:49 +00001080struct __make_tuple_return_impl<reference_wrapper<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001081{
1082 typedef _Tp& type;
1083};
1084
1085template <class _Tp>
1086struct __make_tuple_return
1087{
Marshall Clowa71f9562014-01-03 22:55:49 +00001088 typedef typename __make_tuple_return_impl<typename decay<_Tp>::type>::type type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001089};
1090
1091template <class... _Tp>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001092inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001093tuple<typename __make_tuple_return<_Tp>::type...>
1094make_tuple(_Tp&&... __t)
1095{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001096 return tuple<typename __make_tuple_return<_Tp>::type...>(_VSTD::forward<_Tp>(__t)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001097}
1098
Howard Hinnant3c1ffba2010-08-19 18:59:38 +00001099template <class... _Tp>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001100inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
1101tuple<_Tp&&...>
Howard Hinnant74f26f22012-07-06 21:53:48 +00001102forward_as_tuple(_Tp&&... __t) _NOEXCEPT
Howard Hinnant3c1ffba2010-08-19 18:59:38 +00001103{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001104 return tuple<_Tp&&...>(_VSTD::forward<_Tp>(__t)...);
Howard Hinnant3c1ffba2010-08-19 18:59:38 +00001105}
1106
Howard Hinnant99968442011-11-29 18:15:50 +00001107template <size_t _Ip>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001108struct __tuple_equal
1109{
1110 template <class _Tp, class _Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001111 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001112 bool operator()(const _Tp& __x, const _Up& __y)
1113 {
Marshall Clowba6dbf42014-06-24 00:46:19 +00001114 return __tuple_equal<_Ip - 1>()(__x, __y) && _VSTD::get<_Ip-1>(__x) == _VSTD::get<_Ip-1>(__y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001115 }
1116};
1117
1118template <>
1119struct __tuple_equal<0>
1120{
1121 template <class _Tp, class _Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001122 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001123 bool operator()(const _Tp&, const _Up&)
1124 {
1125 return true;
1126 }
1127};
1128
1129template <class ..._Tp, class ..._Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001130inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001131bool
1132operator==(const tuple<_Tp...>& __x, const tuple<_Up...>& __y)
1133{
1134 return __tuple_equal<sizeof...(_Tp)>()(__x, __y);
1135}
1136
1137template <class ..._Tp, class ..._Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001138inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001139bool
1140operator!=(const tuple<_Tp...>& __x, const tuple<_Up...>& __y)
1141{
1142 return !(__x == __y);
1143}
1144
Howard Hinnant99968442011-11-29 18:15:50 +00001145template <size_t _Ip>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001146struct __tuple_less
1147{
1148 template <class _Tp, class _Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001149 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001150 bool operator()(const _Tp& __x, const _Up& __y)
1151 {
Duncan P. N. Exon Smith07b133f2015-01-21 02:51:17 +00001152 const size_t __idx = tuple_size<_Tp>::value - _Ip;
1153 if (_VSTD::get<__idx>(__x) < _VSTD::get<__idx>(__y))
1154 return true;
1155 if (_VSTD::get<__idx>(__y) < _VSTD::get<__idx>(__x))
1156 return false;
1157 return __tuple_less<_Ip-1>()(__x, __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001158 }
1159};
1160
1161template <>
1162struct __tuple_less<0>
1163{
1164 template <class _Tp, class _Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001165 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001166 bool operator()(const _Tp&, const _Up&)
1167 {
1168 return false;
1169 }
1170};
1171
1172template <class ..._Tp, class ..._Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001173inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001174bool
1175operator<(const tuple<_Tp...>& __x, const tuple<_Up...>& __y)
1176{
1177 return __tuple_less<sizeof...(_Tp)>()(__x, __y);
1178}
1179
1180template <class ..._Tp, class ..._Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001181inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001182bool
1183operator>(const tuple<_Tp...>& __x, const tuple<_Up...>& __y)
1184{
1185 return __y < __x;
1186}
1187
1188template <class ..._Tp, class ..._Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001189inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001190bool
1191operator>=(const tuple<_Tp...>& __x, const tuple<_Up...>& __y)
1192{
1193 return !(__x < __y);
1194}
1195
1196template <class ..._Tp, class ..._Up>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001197inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001198bool
1199operator<=(const tuple<_Tp...>& __x, const tuple<_Up...>& __y)
1200{
1201 return !(__y < __x);
1202}
1203
1204// tuple_cat
1205
Howard Hinnant0e1493e2010-12-11 20:47:50 +00001206template <class _Tp, class _Up> struct __tuple_cat_type;
1207
1208template <class ..._Ttypes, class ..._Utypes>
Howard Hinnantf83417b2011-01-24 16:07:25 +00001209struct __tuple_cat_type<tuple<_Ttypes...>, __tuple_types<_Utypes...> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001210{
Howard Hinnant0e1493e2010-12-11 20:47:50 +00001211 typedef tuple<_Ttypes..., _Utypes...> type;
1212};
1213
1214template <class _ResultTuple, bool _Is_Tuple0TupleLike, class ..._Tuples>
1215struct __tuple_cat_return_1
1216{
1217};
1218
1219template <class ..._Types, class _Tuple0>
1220struct __tuple_cat_return_1<tuple<_Types...>, true, _Tuple0>
1221{
1222 typedef typename __tuple_cat_type<tuple<_Types...>,
1223 typename __make_tuple_types<typename remove_reference<_Tuple0>::type>::type>::type
1224 type;
1225};
1226
1227template <class ..._Types, class _Tuple0, class _Tuple1, class ..._Tuples>
1228struct __tuple_cat_return_1<tuple<_Types...>, true, _Tuple0, _Tuple1, _Tuples...>
1229 : public __tuple_cat_return_1<
1230 typename __tuple_cat_type<
1231 tuple<_Types...>,
1232 typename __make_tuple_types<typename remove_reference<_Tuple0>::type>::type
1233 >::type,
1234 __tuple_like<typename remove_reference<_Tuple1>::type>::value,
1235 _Tuple1, _Tuples...>
1236{
1237};
1238
1239template <class ..._Tuples> struct __tuple_cat_return;
1240
1241template <class _Tuple0, class ..._Tuples>
1242struct __tuple_cat_return<_Tuple0, _Tuples...>
1243 : public __tuple_cat_return_1<tuple<>,
1244 __tuple_like<typename remove_reference<_Tuple0>::type>::value, _Tuple0,
1245 _Tuples...>
1246{
1247};
1248
1249template <>
1250struct __tuple_cat_return<>
1251{
1252 typedef tuple<> type;
1253};
1254
Marshall Clowda0a0e82013-07-22 16:02:19 +00001255inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnant0e1493e2010-12-11 20:47:50 +00001256tuple<>
1257tuple_cat()
1258{
1259 return tuple<>();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001260}
1261
Howard Hinnant99968442011-11-29 18:15:50 +00001262template <class _Rp, class _Indices, class _Tuple0, class ..._Tuples>
Howard Hinnante48e3662010-12-12 23:04:37 +00001263struct __tuple_cat_return_ref_imp;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001264
Howard Hinnante48e3662010-12-12 23:04:37 +00001265template <class ..._Types, size_t ..._I0, class _Tuple0>
1266struct __tuple_cat_return_ref_imp<tuple<_Types...>, __tuple_indices<_I0...>, _Tuple0>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001267{
Howard Hinnant0e1493e2010-12-11 20:47:50 +00001268 typedef typename remove_reference<_Tuple0>::type _T0;
Howard Hinnante48e3662010-12-12 23:04:37 +00001269 typedef tuple<_Types..., typename __apply_cv<_Tuple0,
1270 typename tuple_element<_I0, _T0>::type>::type&&...> type;
1271};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001272
Howard Hinnante48e3662010-12-12 23:04:37 +00001273template <class ..._Types, size_t ..._I0, class _Tuple0, class _Tuple1, class ..._Tuples>
1274struct __tuple_cat_return_ref_imp<tuple<_Types...>, __tuple_indices<_I0...>,
1275 _Tuple0, _Tuple1, _Tuples...>
1276 : public __tuple_cat_return_ref_imp<
1277 tuple<_Types..., typename __apply_cv<_Tuple0,
1278 typename tuple_element<_I0,
1279 typename remove_reference<_Tuple0>::type>::type>::type&&...>,
1280 typename __make_tuple_indices<tuple_size<typename
1281 remove_reference<_Tuple1>::type>::value>::type,
1282 _Tuple1, _Tuples...>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001283{
Howard Hinnante48e3662010-12-12 23:04:37 +00001284};
1285
1286template <class _Tuple0, class ..._Tuples>
1287struct __tuple_cat_return_ref
1288 : public __tuple_cat_return_ref_imp<tuple<>,
1289 typename __make_tuple_indices<
1290 tuple_size<typename remove_reference<_Tuple0>::type>::value
1291 >::type, _Tuple0, _Tuples...>
1292{
1293};
1294
1295template <class _Types, class _I0, class _J0>
1296struct __tuple_cat;
1297
1298template <class ..._Types, size_t ..._I0, size_t ..._J0>
Howard Hinnantf83417b2011-01-24 16:07:25 +00001299struct __tuple_cat<tuple<_Types...>, __tuple_indices<_I0...>, __tuple_indices<_J0...> >
Howard Hinnante48e3662010-12-12 23:04:37 +00001300{
1301 template <class _Tuple0>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001302 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnante48e3662010-12-12 23:04:37 +00001303 typename __tuple_cat_return_ref<tuple<_Types...>&&, _Tuple0&&>::type
1304 operator()(tuple<_Types...> __t, _Tuple0&& __t0)
1305 {
Marshall Clowba6dbf42014-06-24 00:46:19 +00001306 return forward_as_tuple(_VSTD::forward<_Types>(_VSTD::get<_I0>(__t))...,
1307 _VSTD::get<_J0>(_VSTD::forward<_Tuple0>(__t0))...);
Howard Hinnante48e3662010-12-12 23:04:37 +00001308 }
1309
1310 template <class _Tuple0, class _Tuple1, class ..._Tuples>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001311 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnante48e3662010-12-12 23:04:37 +00001312 typename __tuple_cat_return_ref<tuple<_Types...>&&, _Tuple0&&, _Tuple1&&, _Tuples&&...>::type
1313 operator()(tuple<_Types...> __t, _Tuple0&& __t0, _Tuple1&& __t1, _Tuples&& ...__tpls)
1314 {
1315 typedef typename remove_reference<_Tuple0>::type _T0;
1316 typedef typename remove_reference<_Tuple1>::type _T1;
1317 return __tuple_cat<
1318 tuple<_Types..., typename __apply_cv<_Tuple0, typename tuple_element<_J0, _T0>::type>::type&&...>,
1319 typename __make_tuple_indices<sizeof ...(_Types) + tuple_size<_T0>::value>::type,
1320 typename __make_tuple_indices<tuple_size<_T1>::value>::type>()
Marshall Clow1d927e32013-10-05 18:46:37 +00001321 (forward_as_tuple(
Marshall Clowba6dbf42014-06-24 00:46:19 +00001322 _VSTD::forward<_Types>(_VSTD::get<_I0>(__t))...,
1323 _VSTD::get<_J0>(_VSTD::forward<_Tuple0>(__t0))...
Howard Hinnante48e3662010-12-12 23:04:37 +00001324 ),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001325 _VSTD::forward<_Tuple1>(__t1),
1326 _VSTD::forward<_Tuples>(__tpls)...);
Howard Hinnante48e3662010-12-12 23:04:37 +00001327 }
1328};
1329
1330template <class _Tuple0, class... _Tuples>
Marshall Clowda0a0e82013-07-22 16:02:19 +00001331inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
Howard Hinnante48e3662010-12-12 23:04:37 +00001332typename __tuple_cat_return<_Tuple0, _Tuples...>::type
1333tuple_cat(_Tuple0&& __t0, _Tuples&&... __tpls)
1334{
1335 typedef typename remove_reference<_Tuple0>::type _T0;
1336 return __tuple_cat<tuple<>, __tuple_indices<>,
1337 typename __make_tuple_indices<tuple_size<_T0>::value>::type>()
Howard Hinnant0949eed2011-06-30 21:18:19 +00001338 (tuple<>(), _VSTD::forward<_Tuple0>(__t0),
1339 _VSTD::forward<_Tuples>(__tpls)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001340}
1341
1342template <class ..._Tp, class _Alloc>
Eric Fiselierc3589a82017-01-04 23:56:00 +00001343struct _LIBCPP_TEMPLATE_VIS uses_allocator<tuple<_Tp...>, _Alloc>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001344 : true_type {};
1345
Eric Fiseliere1445fd2016-07-25 04:32:07 +00001346#endif // _LIBCPP_HAS_NO_VARIADICS
1347
1348#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001349template <class _T1, class _T2>
1350template <class... _Args1, class... _Args2, size_t ..._I1, size_t ..._I2>
1351inline _LIBCPP_INLINE_VISIBILITY
1352pair<_T1, _T2>::pair(piecewise_construct_t,
1353 tuple<_Args1...>& __first_args, tuple<_Args2...>& __second_args,
1354 __tuple_indices<_I1...>, __tuple_indices<_I2...>)
Marshall Clowba6dbf42014-06-24 00:46:19 +00001355 : first(_VSTD::forward<_Args1>(_VSTD::get<_I1>( __first_args))...),
1356 second(_VSTD::forward<_Args2>(_VSTD::get<_I2>(__second_args))...)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001357{
1358}
Eric Fiseliere1445fd2016-07-25 04:32:07 +00001359#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001360
Eric Fiselier5839fed2016-07-18 00:35:56 +00001361#if _LIBCPP_STD_VER > 14
1362template <class _Tp>
1363constexpr size_t tuple_size_v = tuple_size<_Tp>::value;
1364
1365#define _LIBCPP_NOEXCEPT_RETURN(...) noexcept(noexcept(__VA_ARGS__)) { return __VA_ARGS__; }
1366
1367template <class _Fn, class _Tuple, size_t ..._Id>
1368inline _LIBCPP_INLINE_VISIBILITY
1369constexpr decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
1370 __tuple_indices<_Id...>)
1371_LIBCPP_NOEXCEPT_RETURN(
1372 _VSTD::__invoke_constexpr(
1373 _VSTD::forward<_Fn>(__f),
1374 _VSTD::get<_Id>(_VSTD::forward<_Tuple>(__t))...)
1375)
1376
1377template <class _Fn, class _Tuple>
1378inline _LIBCPP_INLINE_VISIBILITY
1379constexpr decltype(auto) apply(_Fn && __f, _Tuple && __t)
1380_LIBCPP_NOEXCEPT_RETURN(
1381 _VSTD::__apply_tuple_impl(
1382 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
1383 typename __make_tuple_indices<tuple_size_v<decay_t<_Tuple>>>::type{})
1384)
1385
1386template <class _Tp, class _Tuple, size_t... _Idx>
1387inline _LIBCPP_INLINE_VISIBILITY
1388constexpr _Tp __make_from_tuple_impl(_Tuple&& __t, __tuple_indices<_Idx...>)
1389_LIBCPP_NOEXCEPT_RETURN(
1390 _Tp(_VSTD::get<_Idx>(_VSTD::forward<_Tuple>(__t))...)
1391)
1392
1393template <class _Tp, class _Tuple>
1394inline _LIBCPP_INLINE_VISIBILITY
1395constexpr _Tp make_from_tuple(_Tuple&& __t)
1396_LIBCPP_NOEXCEPT_RETURN(
1397 _VSTD::__make_from_tuple_impl<_Tp>(_VSTD::forward<_Tuple>(__t),
1398 typename __make_tuple_indices<tuple_size_v<decay_t<_Tuple>>>::type{})
1399)
1400
1401#undef _LIBCPP_NOEXCEPT_RETURN
1402
1403#endif // _LIBCPP_STD_VER > 14
1404
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001405_LIBCPP_END_NAMESPACE_STD
1406
1407#endif // _LIBCPP_TUPLE