1// <variant> -*- C++ -*-
2
3// Copyright (C) 2016-2024 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
19
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
24
25/** @file variant
26 * This is the `<variant>` C++ Library header.
27 */
28
29#ifndef _GLIBCXX_VARIANT
30#define _GLIBCXX_VARIANT 1
31
32#pragma GCC system_header
33
34#define __glibcxx_want_freestanding_variant
35#define __glibcxx_want_variant
36#include <bits/version.h>
37
38#ifdef __cpp_lib_variant // C++ >= 17
39#include <initializer_list>
40#include <type_traits>
41#include <bits/enable_special_members.h>
42#include <bits/exception_defines.h>
43#include <bits/functional_hash.h>
44#include <bits/invoke.h>
45#include <bits/parse_numbers.h> // _Select_int
46#include <bits/stl_iterator_base_funcs.h>
47#include <bits/stl_construct.h>
48#include <bits/utility.h> // in_place_index_t
49#if __cplusplus >= 202002L
50# include <compare>
51#endif
52
53// C++ < 20 || __cpp_concepts < 202002L || __cpp_constexpr < 201811L
54#if __cpp_lib_variant < 202106L
55# include <ext/aligned_buffer.h> // Use __aligned_membuf instead of union.
56#endif
57
58
59namespace std _GLIBCXX_VISIBILITY(default)
60{
61_GLIBCXX_BEGIN_NAMESPACE_VERSION
62
63 template<typename... _Types> class tuple;
64 template<typename... _Types> class variant;
65 template <typename> struct hash;
66
67 template<typename _Variant>
68 struct variant_size;
69
70 template<typename _Variant>
71 struct variant_size<const _Variant> : variant_size<_Variant> {};
72
73 template<typename _Variant>
74 struct variant_size<volatile _Variant> : variant_size<_Variant> {};
75
76 template<typename _Variant>
77 struct variant_size<const volatile _Variant> : variant_size<_Variant> {};
78
79 template<typename... _Types>
80 struct variant_size<variant<_Types...>>
81 : std::integral_constant<size_t, sizeof...(_Types)> {};
82
83 template<typename _Variant>
84 inline constexpr size_t variant_size_v = variant_size<_Variant>::value;
85
86 template<typename... _Types>
87 inline constexpr size_t
88 variant_size_v<variant<_Types...>> = sizeof...(_Types);
89
90 template<typename... _Types>
91 inline constexpr size_t
92 variant_size_v<const variant<_Types...>> = sizeof...(_Types);
93
94 template<size_t _Np, typename _Variant>
95 struct variant_alternative;
96
97 template<size_t _Np, typename... _Types>
98 struct variant_alternative<_Np, variant<_Types...>>
99 {
100 static_assert(_Np < sizeof...(_Types));
101
102 using type = typename _Nth_type<_Np, _Types...>::type;
103 };
104
105 template<size_t _Np, typename _Variant>
106 using variant_alternative_t =
107 typename variant_alternative<_Np, _Variant>::type;
108
109 template<size_t _Np, typename _Variant>
110 struct variant_alternative<_Np, const _Variant>
111 { using type = const variant_alternative_t<_Np, _Variant>; };
112
113 template<size_t _Np, typename _Variant>
114 struct variant_alternative<_Np, volatile _Variant>
115 { using type = volatile variant_alternative_t<_Np, _Variant>; };
116
117 template<size_t _Np, typename _Variant>
118 struct variant_alternative<_Np, const volatile _Variant>
119 { using type = const volatile variant_alternative_t<_Np, _Variant>; };
120
121 inline constexpr size_t variant_npos = -1;
122
123 template<size_t _Np, typename... _Types>
124 constexpr variant_alternative_t<_Np, variant<_Types...>>&
125 get(variant<_Types...>&);
126
127 template<size_t _Np, typename... _Types>
128 constexpr variant_alternative_t<_Np, variant<_Types...>>&&
129 get(variant<_Types...>&&);
130
131 template<size_t _Np, typename... _Types>
132 constexpr variant_alternative_t<_Np, variant<_Types...>> const&
133 get(const variant<_Types...>&);
134
135 template<size_t _Np, typename... _Types>
136 constexpr variant_alternative_t<_Np, variant<_Types...>> const&&
137 get(const variant<_Types...>&&);
138
139 template<typename _Result_type, typename _Visitor, typename... _Variants>
140 constexpr decltype(auto)
141 __do_visit(_Visitor&& __visitor, _Variants&&... __variants);
142
143 template <typename... _Types, typename _Tp>
144 _GLIBCXX20_CONSTEXPR
145 decltype(auto)
146 __variant_cast(_Tp&& __rhs)
147 {
148 if constexpr (is_lvalue_reference_v<_Tp>)
149 {
150 if constexpr (is_const_v<remove_reference_t<_Tp>>)
151 return static_cast<const variant<_Types...>&>(__rhs);
152 else
153 return static_cast<variant<_Types...>&>(__rhs);
154 }
155 else
156 return static_cast<variant<_Types...>&&>(__rhs);
157 }
158
159namespace __detail
160{
161namespace __variant
162{
163 // used for raw visitation
164 struct __variant_cookie {};
165 // used for raw visitation with indices passed in
166 struct __variant_idx_cookie { using type = __variant_idx_cookie; };
167 // Used to enable deduction (and same-type checking) for std::visit:
168 template<typename _Tp> struct __deduce_visit_result { using type = _Tp; };
169
170 // Visit variants that might be valueless.
171 template<typename _Visitor, typename... _Variants>
172 constexpr void
173 __raw_visit(_Visitor&& __visitor, _Variants&&... __variants)
174 {
175 std::__do_visit<__variant_cookie>(std::forward<_Visitor>(__visitor),
176 std::forward<_Variants>(__variants)...);
177 }
178
179 // Visit variants that might be valueless, passing indices to the visitor.
180 template<typename _Visitor, typename... _Variants>
181 constexpr void
182 __raw_idx_visit(_Visitor&& __visitor, _Variants&&... __variants)
183 {
184 std::__do_visit<__variant_idx_cookie>(std::forward<_Visitor>(__visitor),
185 std::forward<_Variants>(__variants)...);
186 }
187
188 // The __as function templates implement the exposition-only "as-variant"
189
190 template<typename... _Types>
191 constexpr std::variant<_Types...>&
192 __as(std::variant<_Types...>& __v) noexcept
193 { return __v; }
194
195 template<typename... _Types>
196 constexpr const std::variant<_Types...>&
197 __as(const std::variant<_Types...>& __v) noexcept
198 { return __v; }
199
200 template<typename... _Types>
201 constexpr std::variant<_Types...>&&
202 __as(std::variant<_Types...>&& __v) noexcept
203 { return std::move(__v); }
204
205 template<typename... _Types>
206 constexpr const std::variant<_Types...>&&
207 __as(const std::variant<_Types...>&& __v) noexcept
208 { return std::move(__v); }
209
210 // For C++17:
211 // _Uninitialized<T> is guaranteed to be a trivially destructible type,
212 // even if T is not.
213 // For C++20:
214 // _Uninitialized<T> is trivially destructible iff T is, so _Variant_union
215 // needs a constrained non-trivial destructor.
216 template<typename _Type, bool = std::is_trivially_destructible_v<_Type>>
217 struct _Uninitialized;
218
219 template<typename _Type>
220 struct _Uninitialized<_Type, true>
221 {
222 template<typename... _Args>
223 constexpr
224 _Uninitialized(in_place_index_t<0>, _Args&&... __args)
225 : _M_storage(std::forward<_Args>(__args)...)
226 { }
227
228 constexpr const _Type& _M_get() const & noexcept
229 { return _M_storage; }
230
231 constexpr _Type& _M_get() & noexcept
232 { return _M_storage; }
233
234 constexpr const _Type&& _M_get() const && noexcept
235 { return std::move(_M_storage); }
236
237 constexpr _Type&& _M_get() && noexcept
238 { return std::move(_M_storage); }
239
240 _Type _M_storage;
241 };
242
243 template<typename _Type>
244 struct _Uninitialized<_Type, false>
245 {
246#if __cpp_lib_variant >= 202106L
247 template<typename... _Args>
248 constexpr
249 _Uninitialized(in_place_index_t<0>, _Args&&... __args)
250 : _M_storage(std::forward<_Args>(__args)...)
251 { }
252
253 constexpr ~_Uninitialized() { }
254
255 _Uninitialized(const _Uninitialized&) = default;
256 _Uninitialized(_Uninitialized&&) = default;
257 _Uninitialized& operator=(const _Uninitialized&) = default;
258 _Uninitialized& operator=(_Uninitialized&&) = default;
259
260 constexpr const _Type& _M_get() const & noexcept
261 { return _M_storage; }
262
263 constexpr _Type& _M_get() & noexcept
264 { return _M_storage; }
265
266 constexpr const _Type&& _M_get() const && noexcept
267 { return std::move(_M_storage); }
268
269 constexpr _Type&& _M_get() && noexcept
270 { return std::move(_M_storage); }
271
272 struct _Empty_byte { };
273
274 union {
275 _Empty_byte _M_empty;
276 _Type _M_storage;
277 };
278#else
279 template<typename... _Args>
280 constexpr
281 _Uninitialized(in_place_index_t<0>, _Args&&... __args)
282 {
283 ::new ((void*)std::addressof(_M_storage))
284 _Type(std::forward<_Args>(__args)...);
285 }
286
287 const _Type& _M_get() const & noexcept
288 { return *_M_storage._M_ptr(); }
289
290 _Type& _M_get() & noexcept
291 { return *_M_storage._M_ptr(); }
292
293 const _Type&& _M_get() const && noexcept
294 { return std::move(*_M_storage._M_ptr()); }
295
296 _Type&& _M_get() && noexcept
297 { return std::move(*_M_storage._M_ptr()); }
298
299 __gnu_cxx::__aligned_membuf<_Type> _M_storage;
300#endif
301 };
302
303 template<size_t _Np, typename _Union>
304 constexpr decltype(auto)
305 __get_n(_Union&& __u) noexcept
306 {
307 if constexpr (_Np == 0)
308 return std::forward<_Union>(__u)._M_first._M_get();
309 else if constexpr (_Np == 1)
310 return std::forward<_Union>(__u)._M_rest._M_first._M_get();
311 else if constexpr (_Np == 2)
312 return std::forward<_Union>(__u)._M_rest._M_rest._M_first._M_get();
313 else
314 return __variant::__get_n<_Np - 3>(
315 std::forward<_Union>(__u)._M_rest._M_rest._M_rest);
316 }
317
318 // Returns the typed storage for __v.
319 template<size_t _Np, typename _Variant>
320 constexpr decltype(auto)
321 __get(_Variant&& __v) noexcept
322 { return __variant::__get_n<_Np>(std::forward<_Variant>(__v)._M_u); }
323
324 // Gets the _Uninitialized to construct into for __u.
325 template<size_t _Np, typename _Union>
326 constexpr decltype(auto)
327 __construct_n(_Union& __u) noexcept
328 {
329 if constexpr (_Np == 0)
330 return &__u._M_first;
331 else if constexpr (_Np == 1)
332 {
333 std::_Construct(&__u._M_rest);
334 return &__u._M_rest._M_first;
335 }
336 else if constexpr (_Np == 2)
337 {
338 std::_Construct(&__u._M_rest);
339 std::_Construct(&__u._M_rest._M_rest);
340 return &__u._M_rest._M_rest._M_first;
341 }
342 else
343 {
344 std::_Construct(&__u._M_rest);
345 std::_Construct(&__u._M_rest._M_rest);
346 std::_Construct(&__u._M_rest._M_rest._M_rest);
347 return __variant::__construct_n<_Np - 3>(__u._M_rest._M_rest._M_rest);
348 }
349 }
350
351 template<typename... _Types>
352 struct _Traits
353 {
354 static constexpr bool _S_default_ctor =
355 is_default_constructible_v<typename _Nth_type<0, _Types...>::type>;
356 static constexpr bool _S_copy_ctor =
357 (is_copy_constructible_v<_Types> && ...);
358 static constexpr bool _S_move_ctor =
359 (is_move_constructible_v<_Types> && ...);
360 static constexpr bool _S_copy_assign =
361 _S_copy_ctor
362 && (is_copy_assignable_v<_Types> && ...);
363 static constexpr bool _S_move_assign =
364 _S_move_ctor
365 && (is_move_assignable_v<_Types> && ...);
366
367 static constexpr bool _S_trivial_dtor =
368 (is_trivially_destructible_v<_Types> && ...);
369 static constexpr bool _S_trivial_copy_ctor =
370 (is_trivially_copy_constructible_v<_Types> && ...);
371 static constexpr bool _S_trivial_move_ctor =
372 (is_trivially_move_constructible_v<_Types> && ...);
373 static constexpr bool _S_trivial_copy_assign =
374 _S_trivial_dtor && _S_trivial_copy_ctor
375 && (is_trivially_copy_assignable_v<_Types> && ...);
376 static constexpr bool _S_trivial_move_assign =
377 _S_trivial_dtor && _S_trivial_move_ctor
378 && (is_trivially_move_assignable_v<_Types> && ...);
379
380 // The following nothrow traits are for non-trivial SMFs. Trivial SMFs
381 // are always nothrow.
382 static constexpr bool _S_nothrow_default_ctor =
383 is_nothrow_default_constructible_v<
384 typename _Nth_type<0, _Types...>::type>;
385 static constexpr bool _S_nothrow_copy_ctor = false;
386 static constexpr bool _S_nothrow_move_ctor =
387 (is_nothrow_move_constructible_v<_Types> && ...);
388 static constexpr bool _S_nothrow_copy_assign = false;
389 static constexpr bool _S_nothrow_move_assign =
390 _S_nothrow_move_ctor
391 && (is_nothrow_move_assignable_v<_Types> && ...);
392 };
393
394 // Defines members and ctors.
395 template<bool __trivially_destructible, typename... _Types>
396 union _Variadic_union
397 {
398 _Variadic_union() = default;
399
400 template<size_t _Np, typename... _Args>
401 _Variadic_union(in_place_index_t<_Np>, _Args&&...) = delete;
402 };
403
404 template<bool __trivially_destructible, typename _First, typename... _Rest>
405 union _Variadic_union<__trivially_destructible, _First, _Rest...>
406 {
407 constexpr _Variadic_union() : _M_rest() { }
408
409 template<typename... _Args>
410 constexpr
411 _Variadic_union(in_place_index_t<0>, _Args&&... __args)
412 : _M_first(in_place_index<0>, std::forward<_Args>(__args)...)
413 { }
414
415 template<size_t _Np, typename... _Args>
416 constexpr
417 _Variadic_union(in_place_index_t<_Np>, _Args&&... __args)
418 : _M_rest(in_place_index<_Np-1>, std::forward<_Args>(__args)...)
419 { }
420
421#if __cpp_lib_variant >= 202106L
422 _Variadic_union(const _Variadic_union&) = default;
423 _Variadic_union(_Variadic_union&&) = default;
424 _Variadic_union& operator=(const _Variadic_union&) = default;
425 _Variadic_union& operator=(_Variadic_union&&) = default;
426
427 ~_Variadic_union() = default;
428
429 constexpr ~_Variadic_union()
430 requires (!__trivially_destructible)
431 { }
432#endif
433
434 _Uninitialized<_First> _M_first;
435 _Variadic_union<__trivially_destructible, _Rest...> _M_rest;
436 };
437
438 // _Never_valueless_alt is true for variant alternatives that can
439 // always be placed in a variant without it becoming valueless.
440
441 // For suitably-small, trivially copyable types we can create temporaries
442 // on the stack and then memcpy them into place.
443 template<typename _Tp>
444 struct _Never_valueless_alt
445 : __and_<bool_constant<sizeof(_Tp) <= 256>, is_trivially_copyable<_Tp>>
446 { };
447
448 // Specialize _Never_valueless_alt for other types which have a
449 // non-throwing and cheap move construction and move assignment operator,
450 // so that emplacing the type will provide the strong exception-safety
451 // guarantee, by creating and moving a temporary.
452 // Whether _Never_valueless_alt<T> is true or not affects the ABI of a
453 // variant using that alternative, so we can't change the value later!
454
455 // True if every alternative in _Types... can be emplaced in a variant
456 // without it becoming valueless. If this is true, variant<_Types...>
457 // can never be valueless, which enables some minor optimizations.
458 template <typename... _Types>
459 constexpr bool __never_valueless()
460 {
461 return _Traits<_Types...>::_S_move_assign
462 && (_Never_valueless_alt<_Types>::value && ...);
463 }
464
465 // Defines index and the dtor, possibly trivial.
466 template<bool __trivially_destructible, typename... _Types>
467 struct _Variant_storage;
468
469 template <typename... _Types>
470 using __select_index =
471 typename __select_int::_Select_int_base<sizeof...(_Types),
472 unsigned char,
473 unsigned short>::type::value_type;
474
475 template<typename... _Types>
476 struct _Variant_storage<false, _Types...>
477 {
478 constexpr
479 _Variant_storage()
480 : _M_index(static_cast<__index_type>(variant_npos))
481 { }
482
483 template<size_t _Np, typename... _Args>
484 constexpr
485 _Variant_storage(in_place_index_t<_Np>, _Args&&... __args)
486 : _M_u(in_place_index<_Np>, std::forward<_Args>(__args)...),
487 _M_index{_Np}
488 { }
489
490 constexpr void
491 _M_reset()
492 {
493 if (!_M_valid()) [[unlikely]]
494 return;
495
496 std::__do_visit<void>([](auto&& __this_mem) mutable
497 {
498 std::_Destroy(std::__addressof(__this_mem));
499 }, __variant_cast<_Types...>(*this));
500
501 _M_index = static_cast<__index_type>(variant_npos);
502 }
503
504 _GLIBCXX20_CONSTEXPR
505 ~_Variant_storage()
506 { _M_reset(); }
507
508 constexpr bool
509 _M_valid() const noexcept
510 {
511 if constexpr (__variant::__never_valueless<_Types...>())
512 return true;
513 return this->_M_index != __index_type(variant_npos);
514 }
515
516 _Variadic_union<false, _Types...> _M_u;
517 using __index_type = __select_index<_Types...>;
518 __index_type _M_index;
519 };
520
521 template<typename... _Types>
522 struct _Variant_storage<true, _Types...>
523 {
524 constexpr
525 _Variant_storage()
526 : _M_index(static_cast<__index_type>(variant_npos))
527 { }
528
529 template<size_t _Np, typename... _Args>
530 constexpr
531 _Variant_storage(in_place_index_t<_Np>, _Args&&... __args)
532 : _M_u(in_place_index<_Np>, std::forward<_Args>(__args)...),
533 _M_index{_Np}
534 { }
535
536 constexpr void
537 _M_reset() noexcept
538 { _M_index = static_cast<__index_type>(variant_npos); }
539
540 constexpr bool
541 _M_valid() const noexcept
542 {
543 if constexpr (__variant::__never_valueless<_Types...>())
544 return true;
545 // It would be nice if we could just return true for -fno-exceptions.
546 // It's possible (but inadvisable) that a std::variant could become
547 // valueless in a translation unit compiled with -fexceptions and then
548 // be passed to functions compiled with -fno-exceptions. We would need
549 // some #ifdef _GLIBCXX_NO_EXCEPTIONS_GLOBALLY property to elide all
550 // checks for valueless_by_exception().
551 return this->_M_index != static_cast<__index_type>(variant_npos);
552 }
553
554 _Variadic_union<true, _Types...> _M_u;
555 using __index_type = __select_index<_Types...>;
556 __index_type _M_index;
557 };
558
559 // Implementation of v.emplace<N>(args...).
560 template<size_t _Np, bool _Triv, typename... _Types, typename... _Args>
561 _GLIBCXX20_CONSTEXPR
562 inline void
563 __emplace(_Variant_storage<_Triv, _Types...>& __v, _Args&&... __args)
564 {
565 __v._M_reset();
566 auto* __addr = __variant::__construct_n<_Np>(__v._M_u);
567 std::_Construct(__addr, in_place_index<0>,
568 std::forward<_Args>(__args)...);
569 // Construction didn't throw, so can set the new index now:
570 __v._M_index = _Np;
571 }
572
573 template<typename... _Types>
574 using _Variant_storage_alias =
575 _Variant_storage<_Traits<_Types...>::_S_trivial_dtor, _Types...>;
576
577 // The following are (Copy|Move) (ctor|assign) layers for forwarding
578 // triviality and handling non-trivial SMF behaviors.
579
580 template<bool, typename... _Types>
581 struct _Copy_ctor_base : _Variant_storage_alias<_Types...>
582 {
583 using _Base = _Variant_storage_alias<_Types...>;
584 using _Base::_Base;
585
586 _GLIBCXX20_CONSTEXPR
587 _Copy_ctor_base(const _Copy_ctor_base& __rhs)
588 noexcept(_Traits<_Types...>::_S_nothrow_copy_ctor)
589 {
590 __variant::__raw_idx_visit(
591 [this](auto&& __rhs_mem, auto __rhs_index) mutable
592 {
593 constexpr size_t __j = __rhs_index;
594 if constexpr (__j != variant_npos)
595 std::_Construct(std::__addressof(this->_M_u),
596 in_place_index<__j>, __rhs_mem);
597 }, __variant_cast<_Types...>(__rhs));
598 this->_M_index = __rhs._M_index;
599 }
600
601 _Copy_ctor_base(_Copy_ctor_base&&) = default;
602 _Copy_ctor_base& operator=(const _Copy_ctor_base&) = default;
603 _Copy_ctor_base& operator=(_Copy_ctor_base&&) = default;
604 };
605
606 template<typename... _Types>
607 struct _Copy_ctor_base<true, _Types...> : _Variant_storage_alias<_Types...>
608 {
609 using _Base = _Variant_storage_alias<_Types...>;
610 using _Base::_Base;
611 };
612
613 template<typename... _Types>
614 using _Copy_ctor_alias =
615 _Copy_ctor_base<_Traits<_Types...>::_S_trivial_copy_ctor, _Types...>;
616
617 template<bool, typename... _Types>
618 struct _Move_ctor_base : _Copy_ctor_alias<_Types...>
619 {
620 using _Base = _Copy_ctor_alias<_Types...>;
621 using _Base::_Base;
622
623 _GLIBCXX20_CONSTEXPR
624 _Move_ctor_base(_Move_ctor_base&& __rhs)
625 noexcept(_Traits<_Types...>::_S_nothrow_move_ctor)
626 {
627 __variant::__raw_idx_visit(
628 [this](auto&& __rhs_mem, auto __rhs_index) mutable
629 {
630 constexpr size_t __j = __rhs_index;
631 if constexpr (__j != variant_npos)
632 std::_Construct(std::__addressof(this->_M_u),
633 in_place_index<__j>,
634 std::forward<decltype(__rhs_mem)>(__rhs_mem));
635 }, __variant_cast<_Types...>(std::move(__rhs)));
636 this->_M_index = __rhs._M_index;
637 }
638
639 _Move_ctor_base(const _Move_ctor_base&) = default;
640 _Move_ctor_base& operator=(const _Move_ctor_base&) = default;
641 _Move_ctor_base& operator=(_Move_ctor_base&&) = default;
642 };
643
644 template<typename... _Types>
645 struct _Move_ctor_base<true, _Types...> : _Copy_ctor_alias<_Types...>
646 {
647 using _Base = _Copy_ctor_alias<_Types...>;
648 using _Base::_Base;
649 };
650
651 template<typename... _Types>
652 using _Move_ctor_alias =
653 _Move_ctor_base<_Traits<_Types...>::_S_trivial_move_ctor, _Types...>;
654
655 template<bool, typename... _Types>
656 struct _Copy_assign_base : _Move_ctor_alias<_Types...>
657 {
658 using _Base = _Move_ctor_alias<_Types...>;
659 using _Base::_Base;
660
661 _GLIBCXX20_CONSTEXPR
662 _Copy_assign_base&
663 operator=(const _Copy_assign_base& __rhs)
664 noexcept(_Traits<_Types...>::_S_nothrow_copy_assign)
665 {
666 __variant::__raw_idx_visit(
667 [this](auto&& __rhs_mem, auto __rhs_index) mutable
668 {
669 constexpr size_t __j = __rhs_index;
670 if constexpr (__j == variant_npos)
671 this->_M_reset(); // Make *this valueless.
672 else if (this->_M_index == __j)
673 __variant::__get<__j>(*this) = __rhs_mem;
674 else
675 {
676 using _Tj = typename _Nth_type<__j, _Types...>::type;
677 if constexpr (is_nothrow_copy_constructible_v<_Tj>
678 || !is_nothrow_move_constructible_v<_Tj>)
679 __variant::__emplace<__j>(*this, __rhs_mem);
680 else
681 {
682 using _Variant = variant<_Types...>;
683 _Variant& __self = __variant_cast<_Types...>(*this);
684 __self = _Variant(in_place_index<__j>, __rhs_mem);
685 }
686 }
687 }, __variant_cast<_Types...>(__rhs));
688 return *this;
689 }
690
691 _Copy_assign_base(const _Copy_assign_base&) = default;
692 _Copy_assign_base(_Copy_assign_base&&) = default;
693 _Copy_assign_base& operator=(_Copy_assign_base&&) = default;
694 };
695
696 template<typename... _Types>
697 struct _Copy_assign_base<true, _Types...> : _Move_ctor_alias<_Types...>
698 {
699 using _Base = _Move_ctor_alias<_Types...>;
700 using _Base::_Base;
701 };
702
703 template<typename... _Types>
704 using _Copy_assign_alias =
705 _Copy_assign_base<_Traits<_Types...>::_S_trivial_copy_assign, _Types...>;
706
707 template<bool, typename... _Types>
708 struct _Move_assign_base : _Copy_assign_alias<_Types...>
709 {
710 using _Base = _Copy_assign_alias<_Types...>;
711 using _Base::_Base;
712
713 _GLIBCXX20_CONSTEXPR
714 _Move_assign_base&
715 operator=(_Move_assign_base&& __rhs)
716 noexcept(_Traits<_Types...>::_S_nothrow_move_assign)
717 {
718 __variant::__raw_idx_visit(
719 [this](auto&& __rhs_mem, auto __rhs_index) mutable
720 {
721 constexpr size_t __j = __rhs_index;
722 if constexpr (__j != variant_npos)
723 {
724 if (this->_M_index == __j)
725 __variant::__get<__j>(*this) = std::move(__rhs_mem);
726 else
727 {
728 using _Tj = typename _Nth_type<__j, _Types...>::type;
729 if constexpr (is_nothrow_move_constructible_v<_Tj>)
730 __variant::__emplace<__j>(*this, std::move(__rhs_mem));
731 else
732 {
733 using _Variant = variant<_Types...>;
734 _Variant& __self = __variant_cast<_Types...>(*this);
735 __self.template emplace<__j>(std::move(__rhs_mem));
736 }
737 }
738 }
739 else
740 this->_M_reset();
741 }, __variant_cast<_Types...>(__rhs));
742 return *this;
743 }
744
745 _Move_assign_base(const _Move_assign_base&) = default;
746 _Move_assign_base(_Move_assign_base&&) = default;
747 _Move_assign_base& operator=(const _Move_assign_base&) = default;
748 };
749
750 template<typename... _Types>
751 struct _Move_assign_base<true, _Types...> : _Copy_assign_alias<_Types...>
752 {
753 using _Base = _Copy_assign_alias<_Types...>;
754 using _Base::_Base;
755 };
756
757 template<typename... _Types>
758 using _Move_assign_alias =
759 _Move_assign_base<_Traits<_Types...>::_S_trivial_move_assign, _Types...>;
760
761 template<typename... _Types>
762 struct _Variant_base : _Move_assign_alias<_Types...>
763 {
764 using _Base = _Move_assign_alias<_Types...>;
765
766 constexpr
767 _Variant_base() noexcept(_Traits<_Types...>::_S_nothrow_default_ctor)
768 : _Variant_base(in_place_index<0>) { }
769
770 template<size_t _Np, typename... _Args>
771 constexpr explicit
772 _Variant_base(in_place_index_t<_Np> __i, _Args&&... __args)
773 : _Base(__i, std::forward<_Args>(__args)...)
774 { }
775
776 _Variant_base(const _Variant_base&) = default;
777 _Variant_base(_Variant_base&&) = default;
778 _Variant_base& operator=(const _Variant_base&) = default;
779 _Variant_base& operator=(_Variant_base&&) = default;
780 };
781
782 template<typename _Tp, typename... _Types>
783 inline constexpr bool __exactly_once
784 = std::__find_uniq_type_in_pack<_Tp, _Types...>() < sizeof...(_Types);
785
786 // Helper used to check for valid conversions that don't involve narrowing.
787 template<typename _Ti> struct _Arr { _Ti _M_x[1]; };
788
789 // "Build an imaginary function FUN(Ti) for each alternative type Ti"
790 template<size_t _Ind, typename _Tp, typename _Ti, typename = void>
791 struct _Build_FUN
792 {
793 // This function means 'using _Build_FUN<I, T, Ti>::_S_fun;' is valid,
794 // but only static functions will be considered in the call below.
795 void _S_fun() = delete;
796 };
797
798 // "... for which Ti x[] = {std::forward<T>(t)}; is well-formed."
799 template<size_t _Ind, typename _Tp, typename _Ti>
800 struct _Build_FUN<_Ind, _Tp, _Ti,
801 void_t<decltype(_Arr<_Ti>{{std::declval<_Tp>()}})>>
802 {
803 // This is the FUN function for type _Ti, with index _Ind
804 static integral_constant<size_t, _Ind> _S_fun(_Ti);
805 };
806
807 template<typename _Tp, typename _Variant,
808 typename = make_index_sequence<variant_size_v<_Variant>>>
809 struct _Build_FUNs;
810
811 template<typename _Tp, typename... _Ti, size_t... _Ind>
812 struct _Build_FUNs<_Tp, variant<_Ti...>, index_sequence<_Ind...>>
813 : _Build_FUN<_Ind, _Tp, _Ti>...
814 {
815 using _Build_FUN<_Ind, _Tp, _Ti>::_S_fun...;
816 };
817
818 // The index j of the overload FUN(Tj) selected by overload resolution
819 // for FUN(std::forward<_Tp>(t))
820 template<typename _Tp, typename _Variant>
821 using _FUN_type
822 = decltype(_Build_FUNs<_Tp, _Variant>::_S_fun(std::declval<_Tp>()));
823
824 // The index selected for FUN(std::forward<T>(t)), or variant_npos if none.
825 template<typename _Tp, typename _Variant, typename = void>
826 inline constexpr size_t
827 __accepted_index = variant_npos;
828
829 template<typename _Tp, typename _Variant>
830 inline constexpr size_t
831 __accepted_index<_Tp, _Variant, void_t<_FUN_type<_Tp, _Variant>>>
832 = _FUN_type<_Tp, _Variant>::value;
833
834 template<typename _Maybe_variant_cookie, typename _Variant,
835 typename = __remove_cvref_t<_Variant>>
836 inline constexpr bool
837 __extra_visit_slot_needed = false;
838
839 template<typename _Var, typename... _Types>
840 inline constexpr bool
841 __extra_visit_slot_needed<__variant_cookie, _Var, variant<_Types...>>
842 = !__variant::__never_valueless<_Types...>();
843
844 template<typename _Var, typename... _Types>
845 inline constexpr bool
846 __extra_visit_slot_needed<__variant_idx_cookie, _Var, variant<_Types...>>
847 = !__variant::__never_valueless<_Types...>();
848
849 // Used for storing a multi-dimensional vtable.
850 template<typename _Tp, size_t... _Dimensions>
851 struct _Multi_array;
852
853 // Partial specialization with rank zero, stores a single _Tp element.
854 template<typename _Tp>
855 struct _Multi_array<_Tp>
856 {
857 template<typename>
858 struct __untag_result
859 : false_type
860 { using element_type = _Tp; };
861
862#pragma GCC diagnostic push
863#pragma GCC diagnostic ignored "-Wignored-qualifiers"
864 template <typename... _Args>
865 struct __untag_result<const void(*)(_Args...)>
866 : false_type
867 { using element_type = void(*)(_Args...); };
868#pragma GCC diagnostic pop
869
870 template <typename... _Args>
871 struct __untag_result<__variant_cookie(*)(_Args...)>
872 : false_type
873 { using element_type = void(*)(_Args...); };
874
875 template <typename... _Args>
876 struct __untag_result<__variant_idx_cookie(*)(_Args...)>
877 : false_type
878 { using element_type = void(*)(_Args...); };
879
880 template <typename _Res, typename... _Args>
881 struct __untag_result<__deduce_visit_result<_Res>(*)(_Args...)>
882 : true_type
883 { using element_type = _Res(*)(_Args...); };
884
885 using __result_is_deduced = __untag_result<_Tp>;
886
887 constexpr const typename __untag_result<_Tp>::element_type&
888 _M_access() const
889 { return _M_data; }
890
891 typename __untag_result<_Tp>::element_type _M_data;
892 };
893
894 // Partial specialization with rank >= 1.
895 template<typename _Ret,
896 typename _Visitor,
897 typename... _Variants,
898 size_t __first, size_t... __rest>
899 struct _Multi_array<_Ret(*)(_Visitor, _Variants...), __first, __rest...>
900 {
901 static constexpr size_t __index =
902 sizeof...(_Variants) - sizeof...(__rest) - 1;
903
904 using _Variant = typename _Nth_type<__index, _Variants...>::type;
905
906 static constexpr int __do_cookie =
907 __extra_visit_slot_needed<_Ret, _Variant> ? 1 : 0;
908
909 using _Tp = _Ret(*)(_Visitor, _Variants...);
910
911 template<typename... _Args>
912 constexpr decltype(auto)
913 _M_access(size_t __first_index, _Args... __rest_indices) const
914 {
915 return _M_arr[__first_index + __do_cookie]
916 ._M_access(__rest_indices...);
917 }
918
919 _Multi_array<_Tp, __rest...> _M_arr[__first + __do_cookie];
920 };
921
922 // Creates a multi-dimensional vtable recursively.
923 //
924 // For example,
925 // visit([](auto, auto){},
926 // variant<int, char>(), // typedef'ed as V1
927 // variant<float, double, long double>()) // typedef'ed as V2
928 // will trigger instantiations of:
929 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&), 2, 3>,
930 // tuple<V1&&, V2&&>, std::index_sequence<>>
931 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&), 3>,
932 // tuple<V1&&, V2&&>, std::index_sequence<0>>
933 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&)>,
934 // tuple<V1&&, V2&&>, std::index_sequence<0, 0>>
935 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&)>,
936 // tuple<V1&&, V2&&>, std::index_sequence<0, 1>>
937 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&)>,
938 // tuple<V1&&, V2&&>, std::index_sequence<0, 2>>
939 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&), 3>,
940 // tuple<V1&&, V2&&>, std::index_sequence<1>>
941 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&)>,
942 // tuple<V1&&, V2&&>, std::index_sequence<1, 0>>
943 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&)>,
944 // tuple<V1&&, V2&&>, std::index_sequence<1, 1>>
945 // __gen_vtable_impl<_Multi_array<void(*)(V1&&, V2&&)>,
946 // tuple<V1&&, V2&&>, std::index_sequence<1, 2>>
947 // The returned multi-dimensional vtable can be fast accessed by the visitor
948 // using index calculation.
949 template<typename _Array_type, typename _Index_seq>
950 struct __gen_vtable_impl;
951
952 // Defines the _S_apply() member that returns a _Multi_array populated
953 // with function pointers that perform the visitation expressions e(m)
954 // for each valid pack of indexes into the variant types _Variants.
955 //
956 // This partial specialization builds up the index sequences by recursively
957 // calling _S_apply() on the next specialization of __gen_vtable_impl.
958 // The base case of the recursion defines the actual function pointers.
959 template<typename _Result_type, typename _Visitor, size_t... __dimensions,
960 typename... _Variants, size_t... __indices>
961 struct __gen_vtable_impl<
962 _Multi_array<_Result_type (*)(_Visitor, _Variants...), __dimensions...>,
963 std::index_sequence<__indices...>>
964 {
965 using _Next =
966 remove_reference_t<typename _Nth_type<sizeof...(__indices),
967 _Variants...>::type>;
968 using _Array_type =
969 _Multi_array<_Result_type (*)(_Visitor, _Variants...),
970 __dimensions...>;
971
972 static constexpr _Array_type
973 _S_apply()
974 {
975 _Array_type __vtable{};
976 _S_apply_all_alts(
977 __vtable, make_index_sequence<variant_size_v<_Next>>());
978 return __vtable;
979 }
980
981 template<size_t... __var_indices>
982 static constexpr void
983 _S_apply_all_alts(_Array_type& __vtable,
984 std::index_sequence<__var_indices...>)
985 {
986 if constexpr (__extra_visit_slot_needed<_Result_type, _Next>)
987 (_S_apply_single_alt<true, __var_indices>(
988 __vtable._M_arr[__var_indices + 1],
989 &(__vtable._M_arr[0])), ...);
990 else
991 (_S_apply_single_alt<false, __var_indices>(
992 __vtable._M_arr[__var_indices]), ...);
993 }
994
995 template<bool __do_cookie, size_t __index, typename _Tp>
996 static constexpr void
997 _S_apply_single_alt(_Tp& __element, _Tp* __cookie_element = nullptr)
998 {
999 if constexpr (__do_cookie)
1000 {
1001 __element = __gen_vtable_impl<
1002 _Tp,
1003 std::index_sequence<__indices..., __index>>::_S_apply();
1004 *__cookie_element = __gen_vtable_impl<
1005 _Tp,
1006 std::index_sequence<__indices..., variant_npos>>::_S_apply();
1007 }
1008 else
1009 {
1010 auto __tmp_element = __gen_vtable_impl<
1011 remove_reference_t<decltype(__element)>,
1012 std::index_sequence<__indices..., __index>>::_S_apply();
1013 static_assert(is_same_v<_Tp, decltype(__tmp_element)>,
1014 "std::visit requires the visitor to have the same "
1015 "return type for all alternatives of a variant");
1016 __element = __tmp_element;
1017 }
1018 }
1019 };
1020
1021 // This partial specialization is the base case for the recursion.
1022 // It populates a _Multi_array element with the address of a function
1023 // that invokes the visitor with the alternatives specified by __indices.
1024 template<typename _Result_type, typename _Visitor, typename... _Variants,
1025 size_t... __indices>
1026 struct __gen_vtable_impl<
1027 _Multi_array<_Result_type (*)(_Visitor, _Variants...)>,
1028 std::index_sequence<__indices...>>
1029 {
1030 using _Array_type =
1031 _Multi_array<_Result_type (*)(_Visitor, _Variants...)>;
1032
1033 template<size_t __index, typename _Variant>
1034 static constexpr decltype(auto)
1035 __element_by_index_or_cookie(_Variant&& __var) noexcept
1036 {
1037 if constexpr (__index != variant_npos)
1038 return __variant::__get<__index>(std::forward<_Variant>(__var));
1039 else
1040 return __variant_cookie{};
1041 }
1042
1043 static constexpr decltype(auto)
1044 __visit_invoke(_Visitor&& __visitor, _Variants... __vars)
1045 {
1046 if constexpr (is_same_v<_Result_type, __variant_idx_cookie>)
1047 // For raw visitation using indices, pass the indices to the visitor
1048 // and discard the return value:
1049 std::__invoke(std::forward<_Visitor>(__visitor),
1050 __element_by_index_or_cookie<__indices>(
1051 std::forward<_Variants>(__vars))...,
1052 integral_constant<size_t, __indices>()...);
1053 else if constexpr (is_same_v<_Result_type, __variant_cookie>)
1054 // For raw visitation without indices, and discard the return value:
1055 std::__invoke(std::forward<_Visitor>(__visitor),
1056 __element_by_index_or_cookie<__indices>(
1057 std::forward<_Variants>(__vars))...);
1058 else if constexpr (_Array_type::__result_is_deduced::value)
1059 // For the usual std::visit case deduce the return value:
1060 return std::__invoke(std::forward<_Visitor>(__visitor),
1061 __element_by_index_or_cookie<__indices>(
1062 std::forward<_Variants>(__vars))...);
1063 else // for std::visit<R> use INVOKE<R>
1064 return std::__invoke_r<_Result_type>(
1065 std::forward<_Visitor>(__visitor),
1066 __variant::__get<__indices>(std::forward<_Variants>(__vars))...);
1067 }
1068
1069 static constexpr auto
1070 _S_apply()
1071 {
1072 if constexpr (_Array_type::__result_is_deduced::value)
1073 {
1074 constexpr bool __visit_ret_type_mismatch =
1075 !is_same_v<typename _Result_type::type,
1076 decltype(__visit_invoke(visitor: std::declval<_Visitor>(),
1077 vars: std::declval<_Variants>()...))>;
1078 if constexpr (__visit_ret_type_mismatch)
1079 {
1080 struct __cannot_match {};
1081 return __cannot_match{};
1082 }
1083 else
1084 return _Array_type{&__visit_invoke};
1085 }
1086 else
1087 return _Array_type{&__visit_invoke};
1088 }
1089 };
1090
1091 template<typename _Result_type, typename _Visitor, typename... _Variants>
1092 struct __gen_vtable
1093 {
1094 using _Array_type =
1095 _Multi_array<_Result_type (*)(_Visitor, _Variants...),
1096 variant_size_v<remove_reference_t<_Variants>>...>;
1097
1098 static constexpr _Array_type _S_vtable
1099 = __gen_vtable_impl<_Array_type, std::index_sequence<>>::_S_apply();
1100 };
1101
1102 template<size_t _Np, typename _Tp>
1103 struct _Base_dedup : public _Tp { };
1104
1105 template<typename _Variant, typename __indices>
1106 struct _Variant_hash_base;
1107
1108 template<typename... _Types, size_t... __indices>
1109 struct _Variant_hash_base<variant<_Types...>,
1110 std::index_sequence<__indices...>>
1111 : _Base_dedup<__indices, __poison_hash<remove_const_t<_Types>>>... { };
1112
1113 // Equivalent to decltype(get<_Np>(as-variant(declval<_Variant>())))
1114 template<size_t _Np, typename _Variant,
1115 typename _AsV = decltype(__variant::__as(std::declval<_Variant>())),
1116 typename _Tp = variant_alternative_t<_Np, remove_reference_t<_AsV>>>
1117 using __get_t
1118 = __conditional_t<is_lvalue_reference_v<_Variant>, _Tp&, _Tp&&>;
1119
1120 // Return type of std::visit.
1121 template<typename _Visitor, typename... _Variants>
1122 using __visit_result_t
1123 = invoke_result_t<_Visitor, __get_t<0, _Variants>...>;
1124
1125 template<typename _Tp, typename... _Types>
1126 constexpr inline bool __same_types = (is_same_v<_Tp, _Types> && ...);
1127
1128 template <typename _Visitor, typename _Variant, size_t... _Idxs>
1129 constexpr bool __check_visitor_results(std::index_sequence<_Idxs...>)
1130 {
1131 return __same_types<
1132 invoke_result_t<_Visitor, __get_t<_Idxs, _Variant>>...
1133 >;
1134 }
1135
1136} // namespace __variant
1137} // namespace __detail
1138
1139 template<typename _Tp, typename... _Types>
1140 constexpr bool
1141 holds_alternative(const variant<_Types...>& __v) noexcept
1142 {
1143 static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
1144 "T must occur exactly once in alternatives");
1145 return __v.index() == std::__find_uniq_type_in_pack<_Tp, _Types...>();
1146 }
1147
1148 template<typename _Tp, typename... _Types>
1149 constexpr _Tp&
1150 get(variant<_Types...>& __v)
1151 {
1152 static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
1153 "T must occur exactly once in alternatives");
1154 constexpr size_t __n = std::__find_uniq_type_in_pack<_Tp, _Types...>();
1155 return std::get<__n>(__v);
1156 }
1157
1158 template<typename _Tp, typename... _Types>
1159 constexpr _Tp&&
1160 get(variant<_Types...>&& __v)
1161 {
1162 static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
1163 "T must occur exactly once in alternatives");
1164 constexpr size_t __n = std::__find_uniq_type_in_pack<_Tp, _Types...>();
1165 return std::get<__n>(std::move(__v));
1166 }
1167
1168 template<typename _Tp, typename... _Types>
1169 constexpr const _Tp&
1170 get(const variant<_Types...>& __v)
1171 {
1172 static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
1173 "T must occur exactly once in alternatives");
1174 constexpr size_t __n = std::__find_uniq_type_in_pack<_Tp, _Types...>();
1175 return std::get<__n>(__v);
1176 }
1177
1178 template<typename _Tp, typename... _Types>
1179 constexpr const _Tp&&
1180 get(const variant<_Types...>&& __v)
1181 {
1182 static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
1183 "T must occur exactly once in alternatives");
1184 constexpr size_t __n = std::__find_uniq_type_in_pack<_Tp, _Types...>();
1185 return std::get<__n>(std::move(__v));
1186 }
1187
1188 template<size_t _Np, typename... _Types>
1189 constexpr add_pointer_t<variant_alternative_t<_Np, variant<_Types...>>>
1190 get_if(variant<_Types...>* __ptr) noexcept
1191 {
1192 using _Alternative_type = variant_alternative_t<_Np, variant<_Types...>>;
1193 static_assert(_Np < sizeof...(_Types),
1194 "The index must be in [0, number of alternatives)");
1195 static_assert(!is_void_v<_Alternative_type>, "_Tp must not be void");
1196 if (__ptr && __ptr->index() == _Np)
1197 return std::addressof(__detail::__variant::__get<_Np>(*__ptr));
1198 return nullptr;
1199 }
1200
1201 template<size_t _Np, typename... _Types>
1202 constexpr
1203 add_pointer_t<const variant_alternative_t<_Np, variant<_Types...>>>
1204 get_if(const variant<_Types...>* __ptr) noexcept
1205 {
1206 using _Alternative_type = variant_alternative_t<_Np, variant<_Types...>>;
1207 static_assert(_Np < sizeof...(_Types),
1208 "The index must be in [0, number of alternatives)");
1209 static_assert(!is_void_v<_Alternative_type>, "_Tp must not be void");
1210 if (__ptr && __ptr->index() == _Np)
1211 return std::addressof(__detail::__variant::__get<_Np>(*__ptr));
1212 return nullptr;
1213 }
1214
1215 template<typename _Tp, typename... _Types>
1216 constexpr add_pointer_t<_Tp>
1217 get_if(variant<_Types...>* __ptr) noexcept
1218 {
1219 static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
1220 "T must occur exactly once in alternatives");
1221 static_assert(!is_void_v<_Tp>, "_Tp must not be void");
1222 constexpr size_t __n = std::__find_uniq_type_in_pack<_Tp, _Types...>();
1223 return std::get_if<__n>(__ptr);
1224 }
1225
1226 template<typename _Tp, typename... _Types>
1227 constexpr add_pointer_t<const _Tp>
1228 get_if(const variant<_Types...>* __ptr) noexcept
1229 {
1230 static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
1231 "T must occur exactly once in alternatives");
1232 static_assert(!is_void_v<_Tp>, "_Tp must not be void");
1233 constexpr size_t __n = std::__find_uniq_type_in_pack<_Tp, _Types...>();
1234 return std::get_if<__n>(__ptr);
1235 }
1236
1237 struct monostate { };
1238
1239#define _VARIANT_RELATION_FUNCTION_TEMPLATE(__OP, __NAME) \
1240 template<typename... _Types> \
1241 constexpr bool operator __OP(const variant<_Types...>& __lhs, \
1242 const variant<_Types...>& __rhs) \
1243 { \
1244 bool __ret = true; \
1245 __detail::__variant::__raw_idx_visit( \
1246 [&__ret, &__lhs] (auto&& __rhs_mem, auto __rhs_index) mutable \
1247 { \
1248 if constexpr (__rhs_index != variant_npos) \
1249 { \
1250 if (__lhs.index() == __rhs_index) \
1251 { \
1252 auto& __this_mem = std::get<__rhs_index>(__lhs); \
1253 __ret = __this_mem __OP __rhs_mem; \
1254 } \
1255 else \
1256 __ret = (__lhs.index() + 1) __OP (__rhs_index + 1); \
1257 } \
1258 else \
1259 __ret = (__lhs.index() + 1) __OP (__rhs_index + 1); \
1260 }, __rhs); \
1261 return __ret; \
1262 }
1263
1264 _VARIANT_RELATION_FUNCTION_TEMPLATE(<, less)
1265 _VARIANT_RELATION_FUNCTION_TEMPLATE(<=, less_equal)
1266 _VARIANT_RELATION_FUNCTION_TEMPLATE(==, equal)
1267 _VARIANT_RELATION_FUNCTION_TEMPLATE(!=, not_equal)
1268 _VARIANT_RELATION_FUNCTION_TEMPLATE(>=, greater_equal)
1269 _VARIANT_RELATION_FUNCTION_TEMPLATE(>, greater)
1270
1271#undef _VARIANT_RELATION_FUNCTION_TEMPLATE
1272
1273 constexpr bool operator==(monostate, monostate) noexcept { return true; }
1274
1275#ifdef __cpp_lib_three_way_comparison
1276 template<typename... _Types>
1277 requires (three_way_comparable<_Types> && ...)
1278 constexpr
1279 common_comparison_category_t<compare_three_way_result_t<_Types>...>
1280 operator<=>(const variant<_Types...>& __v, const variant<_Types...>& __w)
1281 {
1282 common_comparison_category_t<compare_three_way_result_t<_Types>...> __ret
1283 = strong_ordering::equal;
1284
1285 __detail::__variant::__raw_idx_visit(
1286 [&__ret, &__v] (auto&& __w_mem, auto __w_index) mutable
1287 {
1288 if constexpr (__w_index != variant_npos)
1289 {
1290 if (__v.index() == __w_index)
1291 {
1292 auto& __this_mem = std::get<__w_index>(__v);
1293 __ret = __this_mem <=> __w_mem;
1294 return;
1295 }
1296 }
1297 __ret = (__v.index() + 1) <=> (__w_index + 1);
1298 }, __w);
1299 return __ret;
1300 }
1301
1302 constexpr strong_ordering
1303 operator<=>(monostate, monostate) noexcept { return strong_ordering::equal; }
1304#else
1305 constexpr bool operator!=(monostate, monostate) noexcept { return false; }
1306 constexpr bool operator<(monostate, monostate) noexcept { return false; }
1307 constexpr bool operator>(monostate, monostate) noexcept { return false; }
1308 constexpr bool operator<=(monostate, monostate) noexcept { return true; }
1309 constexpr bool operator>=(monostate, monostate) noexcept { return true; }
1310#endif
1311
1312 template<typename _Visitor, typename... _Variants>
1313 constexpr __detail::__variant::__visit_result_t<_Visitor, _Variants...>
1314 visit(_Visitor&&, _Variants&&...);
1315
1316 template<typename... _Types>
1317 _GLIBCXX20_CONSTEXPR
1318 inline enable_if_t<(is_move_constructible_v<_Types> && ...)
1319 && (is_swappable_v<_Types> && ...)>
1320 swap(variant<_Types...>& __lhs, variant<_Types...>& __rhs)
1321 noexcept(noexcept(__lhs.swap(__rhs)))
1322 { __lhs.swap(__rhs); }
1323
1324 template<typename... _Types>
1325 enable_if_t<!((is_move_constructible_v<_Types> && ...)
1326 && (is_swappable_v<_Types> && ...))>
1327 swap(variant<_Types...>&, variant<_Types...>&) = delete;
1328
1329 class bad_variant_access : public exception
1330 {
1331 public:
1332 bad_variant_access() noexcept { }
1333
1334 const char* what() const noexcept override
1335 { return _M_reason; }
1336
1337 private:
1338 bad_variant_access(const char* __reason) noexcept : _M_reason(__reason) { }
1339
1340 // Must point to a string with static storage duration:
1341 const char* _M_reason = "bad variant access";
1342
1343 friend void __throw_bad_variant_access(const char* __what);
1344 };
1345
1346 // Must only be called with a string literal
1347 inline void
1348 __throw_bad_variant_access(const char* __what)
1349 { _GLIBCXX_THROW_OR_ABORT(bad_variant_access(__what)); }
1350
1351 inline void
1352 __throw_bad_variant_access(bool __valueless)
1353 {
1354 if (__valueless) [[__unlikely__]]
1355 __throw_bad_variant_access(what: "std::get: variant is valueless");
1356 else
1357 __throw_bad_variant_access(what: "std::get: wrong index for variant");
1358 }
1359
1360 template<typename... _Types>
1361 class variant
1362 : private __detail::__variant::_Variant_base<_Types...>,
1363 private _Enable_copy_move<
1364 __detail::__variant::_Traits<_Types...>::_S_copy_ctor,
1365 __detail::__variant::_Traits<_Types...>::_S_copy_assign,
1366 __detail::__variant::_Traits<_Types...>::_S_move_ctor,
1367 __detail::__variant::_Traits<_Types...>::_S_move_assign,
1368 variant<_Types...>>
1369 {
1370 private:
1371 template <typename... _UTypes, typename _Tp>
1372 friend _GLIBCXX20_CONSTEXPR decltype(auto)
1373 __variant_cast(_Tp&&);
1374
1375 static_assert(sizeof...(_Types) > 0,
1376 "variant must have at least one alternative");
1377 static_assert(!(std::is_reference_v<_Types> || ...),
1378 "variant must have no reference alternative");
1379 static_assert(!(std::is_void_v<_Types> || ...),
1380 "variant must have no void alternative");
1381
1382 using _Base = __detail::__variant::_Variant_base<_Types...>;
1383
1384 template<typename _Tp>
1385 static constexpr bool __not_self
1386 = !is_same_v<__remove_cvref_t<_Tp>, variant>;
1387
1388 template<typename _Tp>
1389 static constexpr bool
1390 __exactly_once = __detail::__variant::__exactly_once<_Tp, _Types...>;
1391
1392 template<typename _Tp>
1393 static constexpr size_t __accepted_index
1394 = __detail::__variant::__accepted_index<_Tp, variant>;
1395
1396 template<size_t _Np, typename = enable_if_t<(_Np < sizeof...(_Types))>>
1397 using __to_type = typename _Nth_type<_Np, _Types...>::type;
1398
1399 template<typename _Tp, typename = enable_if_t<__not_self<_Tp>>>
1400 using __accepted_type = __to_type<__accepted_index<_Tp>>;
1401
1402 template<typename _Tp>
1403 static constexpr size_t __index_of
1404 = std::__find_uniq_type_in_pack<_Tp, _Types...>();
1405
1406 using _Traits = __detail::__variant::_Traits<_Types...>;
1407
1408 template<typename _Tp>
1409 struct __is_in_place_tag : false_type { };
1410 template<typename _Tp>
1411 struct __is_in_place_tag<in_place_type_t<_Tp>> : true_type { };
1412 template<size_t _Np>
1413 struct __is_in_place_tag<in_place_index_t<_Np>> : true_type { };
1414
1415 template<typename _Tp>
1416 static constexpr bool __not_in_place_tag
1417 = !__is_in_place_type_v<__remove_cvref_t<_Tp>>
1418 && !__is_in_place_index_v<__remove_cvref_t<_Tp>>;
1419
1420 public:
1421#if __cpp_concepts
1422 variant() requires is_default_constructible_v<__to_type<0>> = default;
1423#else
1424 template<typename _Tp0 = __to_type<0>,
1425 typename = enable_if_t<is_default_constructible_v<_Tp0>>>
1426 constexpr
1427 variant() noexcept(is_nothrow_default_constructible_v<__to_type<0>>)
1428 { }
1429#endif
1430
1431 variant(const variant& __rhs) = default;
1432 variant(variant&&) = default;
1433 variant& operator=(const variant&) = default;
1434 variant& operator=(variant&&) = default;
1435 _GLIBCXX20_CONSTEXPR ~variant() = default;
1436
1437 template<typename _Tp,
1438 typename = enable_if_t<sizeof...(_Types) != 0>,
1439 typename = enable_if_t<__not_in_place_tag<_Tp>>,
1440 typename _Tj = __accepted_type<_Tp&&>,
1441 typename = enable_if_t<__exactly_once<_Tj>
1442 && is_constructible_v<_Tj, _Tp>>>
1443 constexpr
1444 variant(_Tp&& __t)
1445 noexcept(is_nothrow_constructible_v<_Tj, _Tp>)
1446 : variant(in_place_index<__accepted_index<_Tp>>,
1447 std::forward<_Tp>(__t))
1448 { }
1449
1450 template<typename _Tp, typename... _Args,
1451 typename = enable_if_t<__exactly_once<_Tp>
1452 && is_constructible_v<_Tp, _Args...>>>
1453 constexpr explicit
1454 variant(in_place_type_t<_Tp>, _Args&&... __args)
1455 : variant(in_place_index<__index_of<_Tp>>,
1456 std::forward<_Args>(__args)...)
1457 { }
1458
1459 template<typename _Tp, typename _Up, typename... _Args,
1460 typename = enable_if_t<__exactly_once<_Tp>
1461 && is_constructible_v<_Tp,
1462 initializer_list<_Up>&, _Args...>>>
1463 constexpr explicit
1464 variant(in_place_type_t<_Tp>, initializer_list<_Up> __il,
1465 _Args&&... __args)
1466 : variant(in_place_index<__index_of<_Tp>>, __il,
1467 std::forward<_Args>(__args)...)
1468 { }
1469
1470 template<size_t _Np, typename... _Args,
1471 typename _Tp = __to_type<_Np>,
1472 typename = enable_if_t<is_constructible_v<_Tp, _Args...>>>
1473 constexpr explicit
1474 variant(in_place_index_t<_Np>, _Args&&... __args)
1475 : _Base(in_place_index<_Np>, std::forward<_Args>(__args)...)
1476 { }
1477
1478 template<size_t _Np, typename _Up, typename... _Args,
1479 typename _Tp = __to_type<_Np>,
1480 typename = enable_if_t<is_constructible_v<_Tp,
1481 initializer_list<_Up>&,
1482 _Args...>>>
1483 constexpr explicit
1484 variant(in_place_index_t<_Np>, initializer_list<_Up> __il,
1485 _Args&&... __args)
1486 : _Base(in_place_index<_Np>, __il, std::forward<_Args>(__args)...)
1487 { }
1488
1489 template<typename _Tp>
1490 _GLIBCXX20_CONSTEXPR
1491 enable_if_t<__exactly_once<__accepted_type<_Tp&&>>
1492 && is_constructible_v<__accepted_type<_Tp&&>, _Tp>
1493 && is_assignable_v<__accepted_type<_Tp&&>&, _Tp>,
1494 variant&>
1495 operator=(_Tp&& __rhs)
1496 noexcept(is_nothrow_assignable_v<__accepted_type<_Tp&&>&, _Tp>
1497 && is_nothrow_constructible_v<__accepted_type<_Tp&&>, _Tp>)
1498 {
1499 constexpr auto __index = __accepted_index<_Tp>;
1500 if (index() == __index)
1501 std::get<__index>(*this) = std::forward<_Tp>(__rhs);
1502 else
1503 {
1504 using _Tj = __accepted_type<_Tp&&>;
1505 if constexpr (is_nothrow_constructible_v<_Tj, _Tp>
1506 || !is_nothrow_move_constructible_v<_Tj>)
1507 this->emplace<__index>(std::forward<_Tp>(__rhs));
1508 else
1509 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1510 // 3585. converting assignment with immovable alternative
1511 this->emplace<__index>(_Tj(std::forward<_Tp>(__rhs)));
1512 }
1513 return *this;
1514 }
1515
1516 template<typename _Tp, typename... _Args>
1517 _GLIBCXX20_CONSTEXPR
1518 enable_if_t<is_constructible_v<_Tp, _Args...> && __exactly_once<_Tp>,
1519 _Tp&>
1520 emplace(_Args&&... __args)
1521 {
1522 constexpr size_t __index = __index_of<_Tp>;
1523 return this->emplace<__index>(std::forward<_Args>(__args)...);
1524 }
1525
1526 template<typename _Tp, typename _Up, typename... _Args>
1527 _GLIBCXX20_CONSTEXPR
1528 enable_if_t<is_constructible_v<_Tp, initializer_list<_Up>&, _Args...>
1529 && __exactly_once<_Tp>,
1530 _Tp&>
1531 emplace(initializer_list<_Up> __il, _Args&&... __args)
1532 {
1533 constexpr size_t __index = __index_of<_Tp>;
1534 return this->emplace<__index>(__il, std::forward<_Args>(__args)...);
1535 }
1536
1537 template<size_t _Np, typename... _Args>
1538 _GLIBCXX20_CONSTEXPR
1539 enable_if_t<is_constructible_v<__to_type<_Np>, _Args...>,
1540 __to_type<_Np>&>
1541 emplace(_Args&&... __args)
1542 {
1543 namespace __variant = std::__detail::__variant;
1544 using type = typename _Nth_type<_Np, _Types...>::type;
1545 // Provide the strong exception-safety guarantee when possible,
1546 // to avoid becoming valueless.
1547 if constexpr (is_nothrow_constructible_v<type, _Args...>)
1548 {
1549 __variant::__emplace<_Np>(*this, std::forward<_Args>(__args)...);
1550 }
1551 else if constexpr (is_scalar_v<type>)
1552 {
1553 // This might invoke a potentially-throwing conversion operator:
1554 const type __tmp(std::forward<_Args>(__args)...);
1555 // But this won't throw:
1556 __variant::__emplace<_Np>(*this, __tmp);
1557 }
1558 else if constexpr (__variant::_Never_valueless_alt<type>()
1559 && _Traits::_S_move_assign)
1560 {
1561 // This construction might throw:
1562 variant __tmp(in_place_index<_Np>,
1563 std::forward<_Args>(__args)...);
1564 // But _Never_valueless_alt<type> means this won't:
1565 *this = std::move(__tmp);
1566 }
1567 else
1568 {
1569 // This case only provides the basic exception-safety guarantee,
1570 // i.e. the variant can become valueless.
1571 __variant::__emplace<_Np>(*this, std::forward<_Args>(__args)...);
1572 }
1573 return std::get<_Np>(*this);
1574 }
1575
1576 template<size_t _Np, typename _Up, typename... _Args>
1577 _GLIBCXX20_CONSTEXPR
1578 enable_if_t<is_constructible_v<__to_type<_Np>,
1579 initializer_list<_Up>&, _Args...>,
1580 __to_type<_Np>&>
1581 emplace(initializer_list<_Up> __il, _Args&&... __args)
1582 {
1583 namespace __variant = std::__detail::__variant;
1584 using type = typename _Nth_type<_Np, _Types...>::type;
1585 // Provide the strong exception-safety guarantee when possible,
1586 // to avoid becoming valueless.
1587 if constexpr (is_nothrow_constructible_v<type,
1588 initializer_list<_Up>&,
1589 _Args...>)
1590 {
1591 __variant::__emplace<_Np>(*this, __il,
1592 std::forward<_Args>(__args)...);
1593 }
1594 else if constexpr (__variant::_Never_valueless_alt<type>()
1595 && _Traits::_S_move_assign)
1596 {
1597 // This construction might throw:
1598 variant __tmp(in_place_index<_Np>, __il,
1599 std::forward<_Args>(__args)...);
1600 // But _Never_valueless_alt<type> means this won't:
1601 *this = std::move(__tmp);
1602 }
1603 else
1604 {
1605 // This case only provides the basic exception-safety guarantee,
1606 // i.e. the variant can become valueless.
1607 __variant::__emplace<_Np>(*this, __il,
1608 std::forward<_Args>(__args)...);
1609 }
1610 return std::get<_Np>(*this);
1611 }
1612
1613 template<size_t _Np, typename... _Args>
1614 enable_if_t<!(_Np < sizeof...(_Types))> emplace(_Args&&...) = delete;
1615
1616 template<typename _Tp, typename... _Args>
1617 enable_if_t<!__exactly_once<_Tp>> emplace(_Args&&...) = delete;
1618
1619 constexpr bool valueless_by_exception() const noexcept
1620 { return !this->_M_valid(); }
1621
1622 constexpr size_t index() const noexcept
1623 {
1624 using __index_type = typename _Base::__index_type;
1625 if constexpr (__detail::__variant::__never_valueless<_Types...>())
1626 return this->_M_index;
1627 else if constexpr (sizeof...(_Types) <= __index_type(-1) / 2)
1628 return make_signed_t<__index_type>(this->_M_index);
1629 else
1630 return size_t(__index_type(this->_M_index + 1)) - 1;
1631 }
1632
1633 _GLIBCXX20_CONSTEXPR
1634 void
1635 swap(variant& __rhs)
1636 noexcept((__is_nothrow_swappable<_Types>::value && ...)
1637 && is_nothrow_move_constructible_v<variant>)
1638 {
1639 static_assert((is_move_constructible_v<_Types> && ...));
1640
1641 // Handle this here to simplify the visitation.
1642 if (__rhs.valueless_by_exception()) [[__unlikely__]]
1643 {
1644 if (!this->valueless_by_exception()) [[__likely__]]
1645 __rhs.swap(*this);
1646 return;
1647 }
1648
1649 namespace __variant = __detail::__variant;
1650
1651 __variant::__raw_idx_visit(
1652 [this, &__rhs](auto&& __rhs_mem, auto __rhs_index) mutable
1653 {
1654 constexpr size_t __j = __rhs_index;
1655 if constexpr (__j != variant_npos)
1656 {
1657 if (this->index() == __j)
1658 {
1659 using std::swap;
1660 swap(std::get<__j>(*this), __rhs_mem);
1661 }
1662 else
1663 {
1664 auto __tmp(std::move(__rhs_mem));
1665
1666 if constexpr (_Traits::_S_trivial_move_assign)
1667 __rhs = std::move(*this);
1668 else
1669 __variant::__raw_idx_visit(
1670 [&__rhs](auto&& __this_mem, auto __this_index) mutable
1671 {
1672 constexpr size_t __k = __this_index;
1673 if constexpr (__k != variant_npos)
1674 __variant::__emplace<__k>(__rhs,
1675 std::move(__this_mem));
1676 }, *this);
1677
1678 __variant::__emplace<__j>(*this, std::move(__tmp));
1679 }
1680 }
1681 }, __rhs);
1682 }
1683
1684#if defined(__clang__) && __clang_major__ <= 7
1685 public:
1686 using _Base::_M_u; // See https://bugs.llvm.org/show_bug.cgi?id=31852
1687#endif
1688
1689 private:
1690 template<size_t _Np, typename _Vp>
1691 friend constexpr decltype(auto)
1692 __detail::__variant::__get(_Vp&& __v) noexcept;
1693
1694#define _VARIANT_RELATION_FUNCTION_TEMPLATE(__OP) \
1695 template<typename... _Tp> \
1696 friend constexpr bool \
1697 operator __OP(const variant<_Tp...>& __lhs, \
1698 const variant<_Tp...>& __rhs);
1699
1700 _VARIANT_RELATION_FUNCTION_TEMPLATE(<)
1701 _VARIANT_RELATION_FUNCTION_TEMPLATE(<=)
1702 _VARIANT_RELATION_FUNCTION_TEMPLATE(==)
1703 _VARIANT_RELATION_FUNCTION_TEMPLATE(!=)
1704 _VARIANT_RELATION_FUNCTION_TEMPLATE(>=)
1705 _VARIANT_RELATION_FUNCTION_TEMPLATE(>)
1706
1707#undef _VARIANT_RELATION_FUNCTION_TEMPLATE
1708 };
1709
1710 template<size_t _Np, typename... _Types>
1711 constexpr variant_alternative_t<_Np, variant<_Types...>>&
1712 get(variant<_Types...>& __v)
1713 {
1714 static_assert(_Np < sizeof...(_Types),
1715 "The index must be in [0, number of alternatives)");
1716 if (__v.index() != _Np)
1717 __throw_bad_variant_access(__v.valueless_by_exception());
1718 return __detail::__variant::__get<_Np>(__v);
1719 }
1720
1721 template<size_t _Np, typename... _Types>
1722 constexpr variant_alternative_t<_Np, variant<_Types...>>&&
1723 get(variant<_Types...>&& __v)
1724 {
1725 static_assert(_Np < sizeof...(_Types),
1726 "The index must be in [0, number of alternatives)");
1727 if (__v.index() != _Np)
1728 __throw_bad_variant_access(__v.valueless_by_exception());
1729 return __detail::__variant::__get<_Np>(std::move(__v));
1730 }
1731
1732 template<size_t _Np, typename... _Types>
1733 constexpr const variant_alternative_t<_Np, variant<_Types...>>&
1734 get(const variant<_Types...>& __v)
1735 {
1736 static_assert(_Np < sizeof...(_Types),
1737 "The index must be in [0, number of alternatives)");
1738 if (__v.index() != _Np)
1739 __throw_bad_variant_access(__v.valueless_by_exception());
1740 return __detail::__variant::__get<_Np>(__v);
1741 }
1742
1743 template<size_t _Np, typename... _Types>
1744 constexpr const variant_alternative_t<_Np, variant<_Types...>>&&
1745 get(const variant<_Types...>&& __v)
1746 {
1747 static_assert(_Np < sizeof...(_Types),
1748 "The index must be in [0, number of alternatives)");
1749 if (__v.index() != _Np)
1750 __throw_bad_variant_access(__v.valueless_by_exception());
1751 return __detail::__variant::__get<_Np>(std::move(__v));
1752 }
1753
1754 /// @cond undocumented
1755 template<typename _Result_type, typename _Visitor, typename... _Variants>
1756 constexpr decltype(auto)
1757 __do_visit(_Visitor&& __visitor, _Variants&&... __variants)
1758 {
1759 // Get the silly case of visiting no variants out of the way first.
1760 if constexpr (sizeof...(_Variants) == 0)
1761 {
1762 if constexpr (is_void_v<_Result_type>)
1763 return (void) std::forward<_Visitor>(__visitor)();
1764 else
1765 return std::forward<_Visitor>(__visitor)();
1766 }
1767 else
1768 {
1769 constexpr size_t __max = 11; // "These go to eleven."
1770
1771 // The type of the first variant in the pack.
1772 using _V0 = typename _Nth_type<0, _Variants...>::type;
1773 // The number of alternatives in that first variant.
1774 constexpr auto __n = variant_size_v<remove_reference_t<_V0>>;
1775
1776 if constexpr (sizeof...(_Variants) > 1 || __n > __max)
1777 {
1778 // Use a jump table for the general case.
1779 constexpr auto& __vtable = __detail::__variant::__gen_vtable<
1780 _Result_type, _Visitor&&, _Variants&&...>::_S_vtable;
1781
1782 auto __func_ptr = __vtable._M_access(__variants.index()...);
1783 return (*__func_ptr)(std::forward<_Visitor>(__visitor),
1784 std::forward<_Variants>(__variants)...);
1785 }
1786 else // We have a single variant with a small number of alternatives.
1787 {
1788 // A name for the first variant in the pack.
1789 _V0& __v0
1790 = [](_V0& __v, ...) -> _V0& { return __v; }(__variants...);
1791
1792 using __detail::__variant::_Multi_array;
1793 using __detail::__variant::__gen_vtable_impl;
1794 using _Ma = _Multi_array<_Result_type (*)(_Visitor&&, _V0&&)>;
1795
1796#ifdef _GLIBCXX_DEBUG
1797# define _GLIBCXX_VISIT_UNREACHABLE __builtin_trap
1798#else
1799# define _GLIBCXX_VISIT_UNREACHABLE __builtin_unreachable
1800#endif
1801
1802#define _GLIBCXX_VISIT_CASE(N) \
1803 case N: \
1804 { \
1805 if constexpr (N < __n) \
1806 { \
1807 return __gen_vtable_impl<_Ma, index_sequence<N>>:: \
1808 __visit_invoke(std::forward<_Visitor>(__visitor), \
1809 std::forward<_V0>(__v0)); \
1810 } \
1811 else _GLIBCXX_VISIT_UNREACHABLE(); \
1812 }
1813
1814 switch (__v0.index())
1815 {
1816 _GLIBCXX_VISIT_CASE(0)
1817 _GLIBCXX_VISIT_CASE(1)
1818 _GLIBCXX_VISIT_CASE(2)
1819 _GLIBCXX_VISIT_CASE(3)
1820 _GLIBCXX_VISIT_CASE(4)
1821 _GLIBCXX_VISIT_CASE(5)
1822 _GLIBCXX_VISIT_CASE(6)
1823 _GLIBCXX_VISIT_CASE(7)
1824 _GLIBCXX_VISIT_CASE(8)
1825 _GLIBCXX_VISIT_CASE(9)
1826 _GLIBCXX_VISIT_CASE(10)
1827 case variant_npos:
1828 using __detail::__variant::__variant_idx_cookie;
1829 using __detail::__variant::__variant_cookie;
1830 if constexpr (is_same_v<_Result_type, __variant_idx_cookie>
1831 || is_same_v<_Result_type, __variant_cookie>)
1832 {
1833 using _Npos = index_sequence<variant_npos>;
1834 return __gen_vtable_impl<_Ma, _Npos>::
1835 __visit_invoke(std::forward<_Visitor>(__visitor),
1836 std::forward<_V0>(__v0));
1837 }
1838 else
1839 _GLIBCXX_VISIT_UNREACHABLE();
1840 default:
1841 _GLIBCXX_VISIT_UNREACHABLE();
1842 }
1843#undef _GLIBCXX_VISIT_CASE
1844#undef _GLIBCXX_VISIT_UNREACHABLE
1845 }
1846 }
1847 }
1848 /// @endcond
1849
1850 template<typename _Visitor, typename... _Variants>
1851 constexpr __detail::__variant::__visit_result_t<_Visitor, _Variants...>
1852 visit(_Visitor&& __visitor, _Variants&&... __variants)
1853 {
1854 namespace __variant = std::__detail::__variant;
1855
1856 if ((__variant::__as(__variants).valueless_by_exception() || ...))
1857 __throw_bad_variant_access(what: "std::visit: variant is valueless");
1858
1859 using _Result_type
1860 = __detail::__variant::__visit_result_t<_Visitor, _Variants...>;
1861
1862 using _Tag = __detail::__variant::__deduce_visit_result<_Result_type>;
1863
1864 if constexpr (sizeof...(_Variants) == 1)
1865 {
1866 using _Vp = decltype(__variant::__as(std::declval<_Variants>()...));
1867
1868 constexpr bool __visit_rettypes_match = __detail::__variant::
1869 __check_visitor_results<_Visitor, _Vp>(
1870 make_index_sequence<variant_size_v<remove_reference_t<_Vp>>>());
1871 if constexpr (!__visit_rettypes_match)
1872 {
1873 static_assert(__visit_rettypes_match,
1874 "std::visit requires the visitor to have the same "
1875 "return type for all alternatives of a variant");
1876 return;
1877 }
1878 else
1879 return std::__do_visit<_Tag>(
1880 std::forward<_Visitor>(__visitor),
1881 static_cast<_Vp>(__variants)...);
1882 }
1883 else
1884 return std::__do_visit<_Tag>(
1885 std::forward<_Visitor>(__visitor),
1886 __variant::__as(std::forward<_Variants>(__variants))...);
1887 }
1888
1889#if __cplusplus > 201703L
1890 template<typename _Res, typename _Visitor, typename... _Variants>
1891 constexpr _Res
1892 visit(_Visitor&& __visitor, _Variants&&... __variants)
1893 {
1894 namespace __variant = std::__detail::__variant;
1895
1896 if ((__variant::__as(__variants).valueless_by_exception() || ...))
1897 __throw_bad_variant_access("std::visit<R>: variant is valueless");
1898
1899 return std::__do_visit<_Res>(std::forward<_Visitor>(__visitor),
1900 __variant::__as(std::forward<_Variants>(__variants))...);
1901 }
1902#endif
1903
1904 /// @cond undocumented
1905 template<bool, typename... _Types>
1906 struct __variant_hash_call_base_impl
1907 {
1908 size_t
1909 operator()(const variant<_Types...>& __t) const
1910 noexcept((is_nothrow_invocable_v<hash<decay_t<_Types>>, _Types> && ...))
1911 {
1912 size_t __ret;
1913 __detail::__variant::__raw_visit(
1914 [&__t, &__ret](auto&& __t_mem) mutable
1915 {
1916 using _Type = __remove_cvref_t<decltype(__t_mem)>;
1917 if constexpr (!is_same_v<_Type,
1918 __detail::__variant::__variant_cookie>)
1919 __ret = std::hash<size_t>{}(__t.index())
1920 + std::hash<_Type>{}(__t_mem);
1921 else
1922 __ret = std::hash<size_t>{}(__t.index());
1923 }, __t);
1924 return __ret;
1925 }
1926 };
1927
1928 template<typename... _Types>
1929 struct __variant_hash_call_base_impl<false, _Types...> {};
1930
1931 template<typename... _Types>
1932 using __variant_hash_call_base =
1933 __variant_hash_call_base_impl<(__poison_hash<remove_const_t<_Types>>::
1934 __enable_hash_call &&...), _Types...>;
1935 /// @endcond
1936
1937 template<typename... _Types>
1938 struct hash<variant<_Types...>>
1939 : private __detail::__variant::_Variant_hash_base<
1940 variant<_Types...>, std::index_sequence_for<_Types...>>,
1941 public __variant_hash_call_base<_Types...>
1942 {
1943 using result_type [[__deprecated__]] = size_t;
1944 using argument_type [[__deprecated__]] = variant<_Types...>;
1945 };
1946
1947 template<>
1948 struct hash<monostate>
1949 {
1950 using result_type [[__deprecated__]] = size_t;
1951 using argument_type [[__deprecated__]] = monostate;
1952
1953 size_t
1954 operator()(const monostate&) const noexcept
1955 {
1956 constexpr size_t __magic_monostate_hash = -7777;
1957 return __magic_monostate_hash;
1958 }
1959 };
1960
1961 template<typename... _Types>
1962 struct __is_fast_hash<hash<variant<_Types...>>>
1963 : bool_constant<(__is_fast_hash<_Types>::value && ...)>
1964 { };
1965
1966_GLIBCXX_END_NAMESPACE_VERSION
1967} // namespace std
1968
1969#endif // __cpp_lib_variant
1970#endif // _GLIBCXX_VARIANT
1971