29 #ifndef _GLIBCXX_TYPE_TRAITS
30 #define _GLIBCXX_TYPE_TRAITS 1
32 #pragma GCC system_header
34 #if __cplusplus < 201103L
40 namespace std _GLIBCXX_VISIBILITY(default)
42 _GLIBCXX_BEGIN_NAMESPACE_VERSION
44 template<
typename _Tp>
45 class reference_wrapper;
61 template<
typename _Tp, _Tp __v>
64 static constexpr _Tp value = __v;
65 typedef _Tp value_type;
67 constexpr
operator value_type()
const noexcept {
return value; }
68 #if __cplusplus > 201103L
70 #define __cpp_lib_integral_constant_callable 201304L
72 constexpr value_type operator()()
const noexcept {
return value; }
76 #if ! __cpp_inline_variables
77 template<
typename _Tp, _Tp __v>
93 #if __cplusplus >= 201703L
94 # define __cpp_lib_bool_constant 201505L
106 template<
typename _Tp,
typename>
111 struct __conditional<false>
113 template<
typename,
typename _Up>
118 template<
bool _Cond,
typename _If,
typename _Else>
119 using __conditional_t
120 =
typename __conditional<_Cond>::template type<_If, _Else>;
123 template <
typename _Type>
124 struct __type_identity
125 {
using type = _Type; };
127 template<
typename _Tp>
128 using __type_identity_t =
typename __type_identity<_Tp>::type;
130 template<
typename...>
138 template<
typename _B1>
143 template<
typename _B1,
typename _B2>
144 struct __or_<_B1, _B2>
145 :
public __conditional_t<_B1::value, _B1, _B2>
148 template<
typename _B1,
typename _B2,
typename _B3,
typename... _Bn>
149 struct __or_<_B1, _B2, _B3, _Bn...>
150 :
public __conditional_t<_B1::value, _B1, __or_<_B2, _B3, _Bn...>>
153 template<
typename...>
161 template<
typename _B1>
166 template<
typename _B1,
typename _B2>
167 struct __and_<_B1, _B2>
168 :
public __conditional_t<_B1::value, _B2, _B1>
171 template<
typename _B1,
typename _B2,
typename _B3,
typename... _Bn>
172 struct __and_<_B1, _B2, _B3, _Bn...>
173 :
public __conditional_t<_B1::value, __and_<_B2, _B3, _Bn...>, _B1>
176 template<
typename _Pp>
178 :
public __bool_constant<!bool(_Pp::value)>
182 #if __cplusplus >= 201703L
185 template<
typename... _Bn>
186 inline constexpr
bool __or_v = __or_<_Bn...>::value;
187 template<
typename... _Bn>
188 inline constexpr
bool __and_v = __and_<_Bn...>::value;
191 #define __cpp_lib_logical_traits 201510L
193 template<
typename... _Bn>
198 template<
typename... _Bn>
203 template<
typename _Pp>
211 template<
typename... _Bn>
212 inline constexpr
bool conjunction_v = conjunction<_Bn...>::value;
214 template<
typename... _Bn>
215 inline constexpr
bool disjunction_v = disjunction<_Bn...>::value;
217 template<
typename _Pp>
218 inline constexpr
bool negation_v = negation<_Pp>::value;
237 struct __is_array_unknown_bounds;
242 template <
typename _Tp,
size_t = sizeof(_Tp)>
243 constexpr
true_type __is_complete_or_unbounded(__type_identity<_Tp>)
246 template <
typename _TypeIdentity,
247 typename _NestedType =
typename _TypeIdentity::type>
248 constexpr
typename __or_<
249 is_reference<_NestedType>,
250 is_function<_NestedType>,
251 is_void<_NestedType>,
252 __is_array_unknown_bounds<_NestedType>
253 >::type __is_complete_or_unbounded(_TypeIdentity)
261 template<
typename _Tp>
262 struct __success_type
263 {
typedef _Tp type; };
265 struct __failure_type
269 template<
typename _Tp>
270 using __remove_cv_t =
typename remove_cv<_Tp>::type;
275 struct __is_void_helper
279 struct __is_void_helper<void>
284 template<
typename _Tp>
286 :
public __is_void_helper<__remove_cv_t<_Tp>>::type
291 struct __is_integral_helper
295 struct __is_integral_helper<bool>
299 struct __is_integral_helper<char>
303 struct __is_integral_helper<signed char>
307 struct __is_integral_helper<unsigned char>
314 struct __is_integral_helper<wchar_t>
317 #ifdef _GLIBCXX_USE_CHAR8_T
319 struct __is_integral_helper<char8_t>
324 struct __is_integral_helper<char16_t>
328 struct __is_integral_helper<char32_t>
332 struct __is_integral_helper<short>
336 struct __is_integral_helper<unsigned short>
340 struct __is_integral_helper<int>
344 struct __is_integral_helper<unsigned int>
348 struct __is_integral_helper<long>
352 struct __is_integral_helper<unsigned long>
356 struct __is_integral_helper<long long>
360 struct __is_integral_helper<unsigned long long>
365 #if defined(__GLIBCXX_TYPE_INT_N_0)
368 struct __is_integral_helper<__GLIBCXX_TYPE_INT_N_0>
373 struct __is_integral_helper<unsigned __GLIBCXX_TYPE_INT_N_0>
376 #if defined(__GLIBCXX_TYPE_INT_N_1)
379 struct __is_integral_helper<__GLIBCXX_TYPE_INT_N_1>
384 struct __is_integral_helper<unsigned __GLIBCXX_TYPE_INT_N_1>
387 #if defined(__GLIBCXX_TYPE_INT_N_2)
390 struct __is_integral_helper<__GLIBCXX_TYPE_INT_N_2>
395 struct __is_integral_helper<unsigned __GLIBCXX_TYPE_INT_N_2>
398 #if defined(__GLIBCXX_TYPE_INT_N_3)
401 struct __is_integral_helper<__GLIBCXX_TYPE_INT_N_3>
406 struct __is_integral_helper<unsigned __GLIBCXX_TYPE_INT_N_3>
412 template<
typename _Tp>
414 :
public __is_integral_helper<__remove_cv_t<_Tp>>::type
419 struct __is_floating_point_helper
423 struct __is_floating_point_helper<float>
427 struct __is_floating_point_helper<double>
431 struct __is_floating_point_helper<long double>
434 #if !defined(__STRICT_ANSI__) && defined(_GLIBCXX_USE_FLOAT128) && !defined(__CUDACC__)
436 struct __is_floating_point_helper<__float128>
442 template<
typename _Tp>
444 :
public __is_floating_point_helper<__remove_cv_t<_Tp>>::type
452 template<
typename _Tp, std::
size_t _Size>
456 template<
typename _Tp>
457 struct is_array<_Tp[]>
461 struct __is_pointer_helper
464 template<
typename _Tp>
465 struct __is_pointer_helper<_Tp*>
469 template<
typename _Tp>
471 :
public __is_pointer_helper<__remove_cv_t<_Tp>>
::type
479 template<
typename _Tp>
488 template<
typename _Tp>
493 struct __is_member_object_pointer_helper
496 template<
typename _Tp,
typename _Cp>
497 struct __is_member_object_pointer_helper<_Tp _Cp::*>
498 :
public __not_<is_function<_Tp>>::type { };
501 template<
typename _Tp>
503 :
public __is_member_object_pointer_helper<__remove_cv_t<_Tp>>
::type
507 struct __is_member_function_pointer_helper
510 template<
typename _Tp,
typename _Cp>
511 struct __is_member_function_pointer_helper<_Tp _Cp::*>
512 :
public is_function<_Tp>::type { };
515 template<
typename _Tp>
517 :
public __is_member_function_pointer_helper<__remove_cv_t<_Tp>>
::type
521 template<
typename _Tp>
527 template<
typename _Tp>
533 template<
typename _Tp>
539 template<
typename _Tp>
541 :
public __bool_constant<!is_const<const _Tp>::value> { };
543 template<
typename _Tp>
547 template<
typename _Tp>
548 struct is_function<_Tp&&>
551 #define __cpp_lib_is_null_pointer 201309L
554 struct __is_null_pointer_helper
558 struct __is_null_pointer_helper<
std::nullptr_t>
562 template<
typename _Tp>
564 :
public __is_null_pointer_helper<__remove_cv_t<_Tp>>
::type
569 template<
typename _Tp>
572 { } _GLIBCXX_DEPRECATED_SUGGEST(
"std::is_null_pointer");
577 template<
typename _Tp>
579 :
public __or_<is_lvalue_reference<_Tp>,
580 is_rvalue_reference<_Tp>>::type
584 template<
typename _Tp>
586 :
public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
590 template<
typename _Tp>
592 :
public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
593 is_null_pointer<_Tp>>::type
597 template<
typename _Tp>
599 :
public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
607 template<
typename _Tp>
609 :
public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
610 is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
614 template<
typename _Tp>
616 :
public __not_<is_fundamental<_Tp>>::type { };
619 template<
typename _Tp>
620 struct __is_member_pointer_helper
623 template<
typename _Tp,
typename _Cp>
624 struct __is_member_pointer_helper<_Tp _Cp::*>
629 template<
typename _Tp>
631 :
public __is_member_pointer_helper<__remove_cv_t<_Tp>>::type
634 template<
typename,
typename>
638 template<
typename _Tp,
typename... _Types>
639 using __is_one_of = __or_<is_same<_Tp, _Types>...>;
643 template<
typename _Tp>
644 using __is_signed_integer = __is_one_of<__remove_cv_t<_Tp>,
645 signed char,
signed short,
signed int,
signed long,
647 #if defined(__GLIBCXX_TYPE_INT_N_0)
648 ,
signed __GLIBCXX_TYPE_INT_N_0
650 #if defined(__GLIBCXX_TYPE_INT_N_1)
651 ,
signed __GLIBCXX_TYPE_INT_N_1
653 #if defined(__GLIBCXX_TYPE_INT_N_2)
654 ,
signed __GLIBCXX_TYPE_INT_N_2
656 #if defined(__GLIBCXX_TYPE_INT_N_3)
657 ,
signed __GLIBCXX_TYPE_INT_N_3
663 template<
typename _Tp>
664 using __is_unsigned_integer = __is_one_of<__remove_cv_t<_Tp>,
665 unsigned char,
unsigned short,
unsigned int,
unsigned long,
667 #if defined(__GLIBCXX_TYPE_INT_N_0)
668 ,
unsigned __GLIBCXX_TYPE_INT_N_0
670 #if defined(__GLIBCXX_TYPE_INT_N_1)
671 ,
unsigned __GLIBCXX_TYPE_INT_N_1
673 #if defined(__GLIBCXX_TYPE_INT_N_2)
674 ,
unsigned __GLIBCXX_TYPE_INT_N_2
676 #if defined(__GLIBCXX_TYPE_INT_N_3)
677 ,
unsigned __GLIBCXX_TYPE_INT_N_3
682 template<
typename _Tp>
683 using __is_standard_integer
684 = __or_<__is_signed_integer<_Tp>, __is_unsigned_integer<_Tp>>;
687 template<
typename...>
using __void_t = void;
691 template<
typename _Tp,
typename =
void>
692 struct __is_referenceable
696 template<
typename _Tp>
697 struct __is_referenceable<_Tp, __void_t<_Tp&>>
709 template<
typename _Tp>
718 template<
typename _Tp>
723 template<
typename _Tp>
727 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
728 "template argument must be a complete class or an unbounded array");
732 template<
typename _Tp>
736 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
737 "template argument must be a complete class or an unbounded array");
741 template<
typename _Tp>
745 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
746 "template argument must be a complete class or an unbounded array");
754 template<
typename _Tp>
756 _GLIBCXX20_DEPRECATED(
"use is_standard_layout && is_trivial instead")
760 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
761 "template argument must be a complete class or an unbounded array");
768 template<
typename _Tp>
770 _GLIBCXX17_DEPRECATED
774 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
775 "template argument must be a complete class or an unbounded array");
779 template<
typename _Tp>
785 template<
typename _Tp>
790 #if __cplusplus >= 201402L
791 #define __cpp_lib_is_final 201402L
794 template<
typename _Tp>
801 template<
typename _Tp>
807 template<
typename _Tp,
809 struct __is_signed_helper
812 template<
typename _Tp>
813 struct __is_signed_helper<_Tp, true>
814 :
public integral_constant<bool, _Tp(-1) < _Tp(0)>
819 template<typename _Tp>
821 : public __is_signed_helper<_Tp>::type
825 template<typename _Tp>
827 : public __and_<is_arithmetic<_Tp>, __not_<is_signed<_Tp>>>
831 template<typename _Tp, typename _Up = _Tp&&>
835 template<typename _Tp>
840 template<typename _Tp>
841 auto declval() noexcept -> decltype(__declval<_Tp>(0));
843 template<typename, unsigned = 0>
850 template<typename _Tp>
851 struct __is_array_known_bounds
855 template<
typename _Tp>
856 struct __is_array_unknown_bounds
857 :
public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
867 struct __do_is_destructible_impl
869 template<typename _Tp, typename = decltype(declval<_Tp&>().~_Tp())>
876 template<
typename _Tp>
877 struct __is_destructible_impl
878 :
public __do_is_destructible_impl
880 typedef decltype(__test<_Tp>(0)) type;
883 template<typename _Tp,
884 bool = __or_<is_void<_Tp>,
885 __is_array_unknown_bounds<_Tp>,
886 is_function<_Tp>>::value,
887 bool = __or_<is_reference<_Tp>, is_scalar<_Tp>>::value>
888 struct __is_destructible_safe;
890 template<typename _Tp>
891 struct __is_destructible_safe<_Tp, false, false>
892 : public __is_destructible_impl<typename
893 remove_all_extents<_Tp>::type>::type
896 template<
typename _Tp>
897 struct __is_destructible_safe<_Tp, true, false>
900 template<
typename _Tp>
901 struct __is_destructible_safe<_Tp, false, true>
906 template<
typename _Tp>
908 :
public __is_destructible_safe<_Tp>::type
910 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
911 "template argument must be a complete class or an unbounded array");
920 struct __do_is_nt_destructible_impl
922 template<
typename _Tp>
923 static __bool_constant<noexcept(declval<_Tp&>().~_Tp())>
930 template<
typename _Tp>
931 struct __is_nt_destructible_impl
932 :
public __do_is_nt_destructible_impl
934 typedef decltype(__test<_Tp>(0)) type;
937 template<typename _Tp,
938 bool = __or_<is_void<_Tp>,
939 __is_array_unknown_bounds<_Tp>,
940 is_function<_Tp>>::value,
941 bool = __or_<is_reference<_Tp>, is_scalar<_Tp>>::value>
942 struct __is_nt_destructible_safe;
944 template<typename _Tp>
945 struct __is_nt_destructible_safe<_Tp, false, false>
946 : public __is_nt_destructible_impl<typename
947 remove_all_extents<_Tp>::type>::type
950 template<
typename _Tp>
951 struct __is_nt_destructible_safe<_Tp, true, false>
954 template<
typename _Tp>
955 struct __is_nt_destructible_safe<_Tp, false, true>
960 template<
typename _Tp>
962 :
public __is_nt_destructible_safe<_Tp>::type
964 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
965 "template argument must be a complete class or an unbounded array");
969 template<
typename _Tp,
typename... _Args>
970 struct __is_constructible_impl
971 :
public __bool_constant<__is_constructible(_Tp, _Args...)>
976 template<
typename _Tp,
typename... _Args>
978 :
public __is_constructible_impl<_Tp, _Args...>
980 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
981 "template argument must be a complete class or an unbounded array");
985 template<
typename _Tp>
987 :
public __is_constructible_impl<_Tp>::type
989 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
990 "template argument must be a complete class or an unbounded array");
994 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
995 struct __is_copy_constructible_impl;
997 template<
typename _Tp>
998 struct __is_copy_constructible_impl<_Tp, false>
1001 template<
typename _Tp>
1002 struct __is_copy_constructible_impl<_Tp, true>
1003 :
public __is_constructible_impl<_Tp, const _Tp&>
1008 template<
typename _Tp>
1010 :
public __is_copy_constructible_impl<_Tp>
1012 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1013 "template argument must be a complete class or an unbounded array");
1017 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1018 struct __is_move_constructible_impl;
1020 template<
typename _Tp>
1021 struct __is_move_constructible_impl<_Tp, false>
1024 template<
typename _Tp>
1025 struct __is_move_constructible_impl<_Tp, true>
1026 :
public __is_constructible_impl<_Tp, _Tp&&>
1031 template<
typename _Tp>
1033 :
public __is_move_constructible_impl<_Tp>
1035 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1036 "template argument must be a complete class or an unbounded array");
1040 template<
typename _Tp,
typename... _Args>
1041 using __is_nothrow_constructible_impl
1042 = __bool_constant<__is_nothrow_constructible(_Tp, _Args...)>;
1046 template<
typename _Tp,
typename... _Args>
1048 :
public __is_nothrow_constructible_impl<_Tp, _Args...>::type
1050 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1051 "template argument must be a complete class or an unbounded array");
1055 template<
typename _Tp>
1057 :
public __bool_constant<__is_nothrow_constructible(_Tp)>
1059 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1060 "template argument must be a complete class or an unbounded array");
1064 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1065 struct __is_nothrow_copy_constructible_impl;
1067 template<
typename _Tp>
1068 struct __is_nothrow_copy_constructible_impl<_Tp, false>
1071 template<
typename _Tp>
1072 struct __is_nothrow_copy_constructible_impl<_Tp, true>
1073 :
public __is_nothrow_constructible_impl<_Tp, const _Tp&>
1078 template<
typename _Tp>
1080 :
public __is_nothrow_copy_constructible_impl<_Tp>::type
1082 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1083 "template argument must be a complete class or an unbounded array");
1087 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1088 struct __is_nothrow_move_constructible_impl;
1090 template<
typename _Tp>
1091 struct __is_nothrow_move_constructible_impl<_Tp, false>
1094 template<
typename _Tp>
1095 struct __is_nothrow_move_constructible_impl<_Tp, true>
1096 :
public __is_nothrow_constructible_impl<_Tp, _Tp&&>
1101 template<
typename _Tp>
1103 :
public __is_nothrow_move_constructible_impl<_Tp>::type
1105 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1106 "template argument must be a complete class or an unbounded array");
1110 template<
typename _Tp,
typename _Up>
1112 :
public __bool_constant<__is_assignable(_Tp, _Up)>
1114 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1115 "template argument must be a complete class or an unbounded array");
1118 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1119 struct __is_copy_assignable_impl;
1121 template<
typename _Tp>
1122 struct __is_copy_assignable_impl<_Tp, false>
1125 template<
typename _Tp>
1126 struct __is_copy_assignable_impl<_Tp, true>
1127 :
public __bool_constant<__is_assignable(_Tp&, const _Tp&)>
1131 template<
typename _Tp>
1133 :
public __is_copy_assignable_impl<_Tp>::type
1135 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1136 "template argument must be a complete class or an unbounded array");
1139 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1140 struct __is_move_assignable_impl;
1142 template<
typename _Tp>
1143 struct __is_move_assignable_impl<_Tp, false>
1146 template<
typename _Tp>
1147 struct __is_move_assignable_impl<_Tp, true>
1148 :
public __bool_constant<__is_assignable(_Tp&, _Tp&&)>
1152 template<
typename _Tp>
1154 :
public __is_move_assignable_impl<_Tp>::type
1156 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1157 "template argument must be a complete class or an unbounded array");
1160 template<
typename _Tp,
typename _Up>
1161 using __is_nothrow_assignable_impl
1162 = __bool_constant<__is_nothrow_assignable(_Tp, _Up)>;
1165 template<
typename _Tp,
typename _Up>
1167 :
public __is_nothrow_assignable_impl<_Tp, _Up>
1169 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1170 "template argument must be a complete class or an unbounded array");
1173 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1174 struct __is_nt_copy_assignable_impl;
1176 template<
typename _Tp>
1177 struct __is_nt_copy_assignable_impl<_Tp, false>
1180 template<
typename _Tp>
1181 struct __is_nt_copy_assignable_impl<_Tp, true>
1182 :
public __is_nothrow_assignable_impl<_Tp&, const _Tp&>
1186 template<
typename _Tp>
1188 :
public __is_nt_copy_assignable_impl<_Tp>
1190 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1191 "template argument must be a complete class or an unbounded array");
1194 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1195 struct __is_nt_move_assignable_impl;
1197 template<
typename _Tp>
1198 struct __is_nt_move_assignable_impl<_Tp, false>
1201 template<
typename _Tp>
1202 struct __is_nt_move_assignable_impl<_Tp, true>
1203 :
public __is_nothrow_assignable_impl<_Tp&, _Tp&&>
1207 template<
typename _Tp>
1209 :
public __is_nt_move_assignable_impl<_Tp>
1211 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1212 "template argument must be a complete class or an unbounded array");
1216 template<
typename _Tp,
typename... _Args>
1218 :
public __bool_constant<__is_trivially_constructible(_Tp, _Args...)>
1220 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1221 "template argument must be a complete class or an unbounded array");
1225 template<
typename _Tp>
1227 :
public __bool_constant<__is_trivially_constructible(_Tp)>
1229 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1230 "template argument must be a complete class or an unbounded array");
1233 struct __do_is_implicitly_default_constructible_impl
1235 template <
typename _Tp>
1236 static void __helper(
const _Tp&);
1238 template <
typename _Tp>
1240 decltype(__helper<const _Tp&>({}))* = 0);
1245 template<
typename _Tp>
1246 struct __is_implicitly_default_constructible_impl
1247 :
public __do_is_implicitly_default_constructible_impl
1249 typedef decltype(__test(declval<_Tp>())) type;
1252 template<typename _Tp>
1253 struct __is_implicitly_default_constructible_safe
1254 : public __is_implicitly_default_constructible_impl<_Tp>::type
1257 template <
typename _Tp>
1258 struct __is_implicitly_default_constructible
1259 :
public __and_<__is_constructible_impl<_Tp>,
1260 __is_implicitly_default_constructible_safe<_Tp>>
1263 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1264 struct __is_trivially_copy_constructible_impl;
1266 template<
typename _Tp>
1267 struct __is_trivially_copy_constructible_impl<_Tp, false>
1270 template<
typename _Tp>
1271 struct __is_trivially_copy_constructible_impl<_Tp, true>
1272 :
public __and_<__is_copy_constructible_impl<_Tp>,
1273 integral_constant<bool,
1274 __is_trivially_constructible(_Tp, const _Tp&)>>
1278 template<
typename _Tp>
1280 :
public __is_trivially_copy_constructible_impl<_Tp>
1282 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1283 "template argument must be a complete class or an unbounded array");
1286 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1287 struct __is_trivially_move_constructible_impl;
1289 template<
typename _Tp>
1290 struct __is_trivially_move_constructible_impl<_Tp, false>
1293 template<
typename _Tp>
1294 struct __is_trivially_move_constructible_impl<_Tp, true>
1295 :
public __and_<__is_move_constructible_impl<_Tp>,
1296 integral_constant<bool,
1297 __is_trivially_constructible(_Tp, _Tp&&)>>
1301 template<
typename _Tp>
1303 :
public __is_trivially_move_constructible_impl<_Tp>
1305 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1306 "template argument must be a complete class or an unbounded array");
1310 template<
typename _Tp,
typename _Up>
1312 :
public __bool_constant<__is_trivially_assignable(_Tp, _Up)>
1314 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1315 "template argument must be a complete class or an unbounded array");
1318 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1319 struct __is_trivially_copy_assignable_impl;
1321 template<
typename _Tp>
1322 struct __is_trivially_copy_assignable_impl<_Tp, false>
1325 template<
typename _Tp>
1326 struct __is_trivially_copy_assignable_impl<_Tp, true>
1327 :
public __bool_constant<__is_trivially_assignable(_Tp&, const _Tp&)>
1331 template<
typename _Tp>
1333 :
public __is_trivially_copy_assignable_impl<_Tp>
1335 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1336 "template argument must be a complete class or an unbounded array");
1339 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1340 struct __is_trivially_move_assignable_impl;
1342 template<
typename _Tp>
1343 struct __is_trivially_move_assignable_impl<_Tp, false>
1346 template<
typename _Tp>
1347 struct __is_trivially_move_assignable_impl<_Tp, true>
1348 :
public __bool_constant<__is_trivially_assignable(_Tp&, _Tp&&)>
1352 template<
typename _Tp>
1354 :
public __is_trivially_move_assignable_impl<_Tp>
1356 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1357 "template argument must be a complete class or an unbounded array");
1361 template<
typename _Tp>
1363 :
public __and_<__is_destructible_safe<_Tp>,
1364 __bool_constant<__has_trivial_destructor(_Tp)>>
1366 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1367 "template argument must be a complete class or an unbounded array");
1372 template<
typename _Tp>
1376 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1377 "template argument must be a complete class or an unbounded array");
1384 template<
typename _Tp>
1388 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
1389 "template argument must be a complete class or an unbounded array");
1397 template<
typename _Tp, std::
size_t _Size>
1398 struct rank<_Tp[_Size]>
1401 template<
typename _Tp>
1403 :
public integral_constant<std::size_t, 1 + rank<_Tp>::value> { };
1406 template<
typename,
unsigned _U
int>
1410 template<
typename _Tp,
unsigned _U
int, std::
size_t _Size>
1411 struct extent<_Tp[_Size], _Uint>
1413 _Uint == 0 ? _Size : extent<_Tp,
1417 template<
typename _Tp,
unsigned _U
int>
1418 struct extent<_Tp[], _Uint>
1419 :
public integral_constant<std::size_t,
1420 _Uint == 0 ? 0 : extent<_Tp,
1428 template<
typename _Tp,
typename _Up>
1430 #ifdef _GLIBCXX_HAVE_BUILTIN_IS_SAME
1437 #ifndef _GLIBCXX_HAVE_BUILTIN_IS_SAME
1438 template<
typename _Tp>
1445 template<
typename _Base,
typename _Derived>
1450 template<
typename _From,
typename _To,
1453 struct __is_convertible_helper
1458 #pragma GCC diagnostic push
1459 #pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
1460 template<
typename _From,
typename _To>
1461 class __is_convertible_helper<_From, _To, false>
1463 template<
typename _To1>
1464 static void __test_aux(_To1) noexcept;
1466 template<
typename _From1,
typename _To1,
1467 typename = decltype(__test_aux<_To1>(std::declval<_From1>()))>
1471 template<
typename,
typename>
1476 typedef decltype(__test<_From, _To>(0)) type;
1478 #pragma GCC diagnostic pop
1481 template<
typename _From,
typename _To>
1483 :
public __is_convertible_helper<_From, _To>::type
1487 template<
typename _ToElementType,
typename _FromElementType>
1491 template<
typename _From,
typename _To,
1494 struct __is_nt_convertible_helper
1498 #pragma GCC diagnostic push
1499 #pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
1500 template<
typename _From,
typename _To>
1501 class __is_nt_convertible_helper<_From, _To, false>
1503 template<
typename _To1>
1504 static void __test_aux(_To1) noexcept;
1506 template<
typename _From1,
typename _To1>
1508 __bool_constant<noexcept(__test_aux<_To1>(std::declval<_From1>()))>
1511 template<
typename,
typename>
1516 using type = decltype(__test<_From, _To>(0));
1518 #pragma GCC diagnostic pop
1521 template<
typename _From,
typename _To>
1522 struct __is_nothrow_convertible
1523 :
public __is_nt_convertible_helper<_From, _To>::type
1526 #if __cplusplus > 201703L
1527 #define __cpp_lib_is_nothrow_convertible 201806L
1529 template<
typename _From,
typename _To>
1531 :
public __is_nt_convertible_helper<_From, _To>::type
1535 template<
typename _From,
typename _To>
1543 template<
typename _Tp>
1545 {
typedef _Tp type; };
1547 template<
typename _Tp>
1549 {
typedef _Tp type; };
1552 template<
typename _Tp>
1554 {
typedef _Tp type; };
1556 template<
typename _Tp>
1558 {
typedef _Tp type; };
1561 template<
typename _Tp>
1563 {
using type = _Tp; };
1565 template<
typename _Tp>
1567 {
using type = _Tp; };
1569 template<
typename _Tp>
1570 struct remove_cv<volatile _Tp>
1571 {
using type = _Tp; };
1573 template<
typename _Tp>
1574 struct remove_cv<const volatile _Tp>
1575 {
using type = _Tp; };
1578 template<
typename _Tp>
1580 {
typedef _Tp
const type; };
1583 template<
typename _Tp>
1585 {
typedef _Tp
volatile type; };
1588 template<
typename _Tp>
1595 #if __cplusplus > 201103L
1597 #define __cpp_lib_transformation_trait_aliases 201304L
1600 template<
typename _Tp>
1604 template<
typename _Tp>
1608 template<
typename _Tp>
1612 template<
typename _Tp>
1616 template<
typename _Tp>
1620 template<
typename _Tp>
1627 template<
typename _Tp>
1629 {
typedef _Tp type; };
1631 template<
typename _Tp>
1633 {
typedef _Tp type; };
1635 template<
typename _Tp>
1636 struct remove_reference<_Tp&&>
1637 {
typedef _Tp type; };
1639 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1640 struct __add_lvalue_reference_helper
1641 {
typedef _Tp type; };
1643 template<
typename _Tp>
1644 struct __add_lvalue_reference_helper<_Tp, true>
1645 {
typedef _Tp& type; };
1648 template<
typename _Tp>
1650 :
public __add_lvalue_reference_helper<_Tp>
1653 template<typename _Tp, bool = __is_referenceable<_Tp>::value>
1654 struct __add_rvalue_reference_helper
1655 {
typedef _Tp type; };
1657 template<
typename _Tp>
1658 struct __add_rvalue_reference_helper<_Tp, true>
1659 {
typedef _Tp&& type; };
1662 template<
typename _Tp>
1664 :
public __add_rvalue_reference_helper<_Tp>
1667 #if __cplusplus > 201103L
1669 template<
typename _Tp>
1673 template<
typename _Tp>
1677 template<
typename _Tp>
1686 template<
typename _Unqualified,
bool _IsConst,
bool _IsVol>
1687 struct __cv_selector;
1689 template<
typename _Unqualified>
1690 struct __cv_selector<_Unqualified, false, false>
1691 {
typedef _Unqualified __type; };
1693 template<
typename _Unqualified>
1694 struct __cv_selector<_Unqualified, false, true>
1695 {
typedef volatile _Unqualified __type; };
1697 template<
typename _Unqualified>
1698 struct __cv_selector<_Unqualified, true, false>
1699 {
typedef const _Unqualified __type; };
1701 template<
typename _Unqualified>
1702 struct __cv_selector<_Unqualified, true, true>
1703 {
typedef const volatile _Unqualified __type; };
1705 template<
typename _Qualified,
typename _Unqualified,
1706 bool _IsConst = is_const<_Qualified>::value,
1707 bool _IsVol = is_volatile<_Qualified>::value>
1708 class __match_cv_qualifiers
1710 typedef __cv_selector<_Unqualified, _IsConst, _IsVol> __match;
1713 typedef typename __match::__type __type;
1717 template<
typename _Tp>
1718 struct __make_unsigned
1719 {
typedef _Tp __type; };
1722 struct __make_unsigned<char>
1723 {
typedef unsigned char __type; };
1726 struct __make_unsigned<signed char>
1727 {
typedef unsigned char __type; };
1730 struct __make_unsigned<short>
1731 {
typedef unsigned short __type; };
1734 struct __make_unsigned<int>
1735 {
typedef unsigned int __type; };
1738 struct __make_unsigned<long>
1739 {
typedef unsigned long __type; };
1742 struct __make_unsigned<long long>
1743 {
typedef unsigned long long __type; };
1745 #if defined(__GLIBCXX_TYPE_INT_N_0)
1748 struct __make_unsigned<__GLIBCXX_TYPE_INT_N_0>
1749 {
typedef unsigned __GLIBCXX_TYPE_INT_N_0 __type; };
1751 #if defined(__GLIBCXX_TYPE_INT_N_1)
1754 struct __make_unsigned<__GLIBCXX_TYPE_INT_N_1>
1755 {
typedef unsigned __GLIBCXX_TYPE_INT_N_1 __type; };
1757 #if defined(__GLIBCXX_TYPE_INT_N_2)
1760 struct __make_unsigned<__GLIBCXX_TYPE_INT_N_2>
1761 {
typedef unsigned __GLIBCXX_TYPE_INT_N_2 __type; };
1763 #if defined(__GLIBCXX_TYPE_INT_N_3)
1766 struct __make_unsigned<__GLIBCXX_TYPE_INT_N_3>
1767 {
typedef unsigned __GLIBCXX_TYPE_INT_N_3 __type; };
1771 template<
typename _Tp,
1772 bool _IsInt = is_integral<_Tp>::value,
1773 bool _IsEnum = is_enum<_Tp>::value>
1774 class __make_unsigned_selector;
1776 template<
typename _Tp>
1777 class __make_unsigned_selector<_Tp, true, false>
1779 using __unsigned_type
1780 =
typename __make_unsigned<__remove_cv_t<_Tp>>::__type;
1784 =
typename __match_cv_qualifiers<_Tp, __unsigned_type>::__type;
1787 class __make_unsigned_selector_base
1790 template<
typename...>
struct _List { };
1792 template<
typename _Tp,
typename... _Up>
1793 struct _List<_Tp, _Up...> : _List<_Up...>
1794 {
static constexpr
size_t __size =
sizeof(_Tp); };
1796 template<
size_t _Sz,
typename _Tp,
bool = (_Sz <= _Tp::__size)>
1799 template<
size_t _Sz,
typename _U
int,
typename... _UInts>
1800 struct __select<_Sz, _List<_Uint, _UInts...>,
true>
1801 {
using __type = _Uint; };
1803 template<
size_t _Sz,
typename _Uint,
typename... _UInts>
1804 struct __select<_Sz, _List<_Uint, _UInts...>, false>
1805 : __select<_Sz, _List<_UInts...>>
1810 template<
typename _Tp>
1811 class __make_unsigned_selector<_Tp, false, true>
1812 : __make_unsigned_selector_base
1815 using _UInts = _List<
unsigned char,
unsigned short,
unsigned int,
1816 unsigned long,
unsigned long long>;
1818 using __unsigned_type =
typename __select<
sizeof(_Tp), _UInts>::__type;
1822 =
typename __match_cv_qualifiers<_Tp, __unsigned_type>::__type;
1830 struct __make_unsigned<wchar_t>
1833 =
typename __make_unsigned_selector<wchar_t, false, true>::__type;
1836 #ifdef _GLIBCXX_USE_CHAR8_T
1838 struct __make_unsigned<char8_t>
1841 =
typename __make_unsigned_selector<char8_t, false, true>::__type;
1846 struct __make_unsigned<char16_t>
1849 =
typename __make_unsigned_selector<char16_t, false, true>::__type;
1853 struct __make_unsigned<char32_t>
1856 =
typename __make_unsigned_selector<char32_t, false, true>::__type;
1864 template<
typename _Tp>
1866 {
typedef typename __make_unsigned_selector<_Tp>::__type type; };
1875 template<
typename _Tp>
1876 struct __make_signed
1877 {
typedef _Tp __type; };
1880 struct __make_signed<char>
1881 {
typedef signed char __type; };
1884 struct __make_signed<unsigned char>
1885 {
typedef signed char __type; };
1888 struct __make_signed<unsigned short>
1889 {
typedef signed short __type; };
1892 struct __make_signed<unsigned int>
1893 {
typedef signed int __type; };
1896 struct __make_signed<unsigned long>
1897 {
typedef signed long __type; };
1900 struct __make_signed<unsigned long long>
1901 {
typedef signed long long __type; };
1903 #if defined(__GLIBCXX_TYPE_INT_N_0)
1906 struct __make_signed<unsigned __GLIBCXX_TYPE_INT_N_0>
1907 {
typedef __GLIBCXX_TYPE_INT_N_0 __type; };
1909 #if defined(__GLIBCXX_TYPE_INT_N_1)
1912 struct __make_signed<unsigned __GLIBCXX_TYPE_INT_N_1>
1913 {
typedef __GLIBCXX_TYPE_INT_N_1 __type; };
1915 #if defined(__GLIBCXX_TYPE_INT_N_2)
1918 struct __make_signed<unsigned __GLIBCXX_TYPE_INT_N_2>
1919 {
typedef __GLIBCXX_TYPE_INT_N_2 __type; };
1921 #if defined(__GLIBCXX_TYPE_INT_N_3)
1924 struct __make_signed<unsigned __GLIBCXX_TYPE_INT_N_3>
1925 {
typedef __GLIBCXX_TYPE_INT_N_3 __type; };
1929 template<
typename _Tp,
1930 bool _IsInt = is_integral<_Tp>::value,
1931 bool _IsEnum = is_enum<_Tp>::value>
1932 class __make_signed_selector;
1934 template<
typename _Tp>
1935 class __make_signed_selector<_Tp, true, false>
1938 =
typename __make_signed<__remove_cv_t<_Tp>>::__type;
1942 =
typename __match_cv_qualifiers<_Tp, __signed_type>::__type;
1946 template<
typename _Tp>
1947 class __make_signed_selector<_Tp, false, true>
1949 typedef typename __make_unsigned_selector<_Tp>::__type __unsigned_type;
1952 typedef typename __make_signed_selector<__unsigned_type>::__type __type;
1960 struct __make_signed<wchar_t>
1963 =
typename __make_signed_selector<wchar_t, false, true>::__type;
1966 #if defined(_GLIBCXX_USE_CHAR8_T)
1968 struct __make_signed<char8_t>
1971 =
typename __make_signed_selector<char8_t, false, true>::__type;
1976 struct __make_signed<char16_t>
1979 =
typename __make_signed_selector<char16_t, false, true>::__type;
1983 struct __make_signed<char32_t>
1986 =
typename __make_signed_selector<char32_t, false, true>::__type;
1994 template<
typename _Tp>
1996 {
typedef typename __make_signed_selector<_Tp>::__type type; };
2002 #if __cplusplus > 201103L
2004 template<
typename _Tp>
2008 template<
typename _Tp>
2015 template<
typename _Tp>
2017 {
typedef _Tp type; };
2019 template<
typename _Tp, std::
size_t _Size>
2021 {
typedef _Tp type; };
2023 template<
typename _Tp>
2024 struct remove_extent<_Tp[]>
2025 {
typedef _Tp type; };
2028 template<
typename _Tp>
2030 {
typedef _Tp type; };
2032 template<
typename _Tp, std::
size_t _Size>
2034 {
typedef typename remove_all_extents<_Tp>::type type; };
2036 template<
typename _Tp>
2037 struct remove_all_extents<_Tp[]>
2038 {
typedef typename remove_all_extents<_Tp>::type type; };
2040 #if __cplusplus > 201103L
2042 template<
typename _Tp>
2046 template<
typename _Tp>
2052 template<
typename _Tp,
typename>
2053 struct __remove_pointer_helper
2054 {
typedef _Tp type; };
2056 template<
typename _Tp,
typename _Up>
2057 struct __remove_pointer_helper<_Tp, _Up*>
2058 {
typedef _Up type; };
2061 template<
typename _Tp>
2063 :
public __remove_pointer_helper<_Tp, __remove_cv_t<_Tp>>
2066 template<
typename _Tp,
bool = __or_<__is_referenceable<_Tp>,
2067 is_
void<_Tp>>::value>
2068 struct __add_pointer_helper
2069 {
typedef _Tp type; };
2071 template<
typename _Tp>
2072 struct __add_pointer_helper<_Tp, true>
2073 {
typedef typename remove_reference<_Tp>::type* type; };
2076 template<
typename _Tp>
2078 :
public __add_pointer_helper<_Tp>
2081 #if __cplusplus > 201103L
2083 template<
typename _Tp>
2087 template<
typename _Tp>
2091 template<std::
size_t _Len>
2092 struct __aligned_storage_msa
2096 unsigned char __data[_Len];
2097 struct __attribute__((__aligned__)) { } __align;
2111 template<std::size_t _Len, std::size_t _Align =
2112 __alignof__(
typename __aligned_storage_msa<_Len>::__type)>
2117 unsigned char __data[_Len];
2118 struct __attribute__((__aligned__((_Align)))) { } __align;
2122 template <
typename... _Types>
2123 struct __strictest_alignment
2125 static const size_t _S_alignment = 0;
2126 static const size_t _S_size = 0;
2129 template <
typename _Tp,
typename... _Types>
2130 struct __strictest_alignment<_Tp, _Types...>
2132 static const size_t _S_alignment =
2133 alignof(_Tp) > __strictest_alignment<_Types...>::_S_alignment
2134 ?
alignof(_Tp) : __strictest_alignment<_Types...>::_S_alignment;
2135 static const size_t _S_size =
2136 sizeof(_Tp) > __strictest_alignment<_Types...>::_S_size
2137 ?
sizeof(_Tp) : __strictest_alignment<_Types...>::_S_size;
2150 template <
size_t _Len,
typename... _Types>
2154 static_assert(
sizeof...(_Types) != 0,
"At least one type is required");
2156 using __strictest = __strictest_alignment<_Types...>;
2157 static const size_t _S_len = _Len > __strictest::_S_size
2158 ? _Len : __strictest::_S_size;
2161 static const size_t alignment_value = __strictest::_S_alignment;
2166 template <
size_t _Len,
typename... _Types>
2167 const size_t aligned_union<_Len, _Types...>::alignment_value;
2173 template<
typename _Up,
2176 struct __decay_selector;
2179 template<
typename _Up>
2180 struct __decay_selector<_Up, false, false>
2181 {
typedef __remove_cv_t<_Up> __type; };
2183 template<
typename _Up>
2184 struct __decay_selector<_Up, true, false>
2185 {
typedef typename remove_extent<_Up>::type* __type; };
2187 template<
typename _Up>
2188 struct __decay_selector<_Up, false, true>
2189 {
typedef typename add_pointer<_Up>::type __type; };
2193 template<
typename _Tp>
2196 typedef typename remove_reference<_Tp>::type __remove_type;
2199 typedef typename __decay_selector<__remove_type>::__type type;
2205 template<
typename _Tp>
2206 struct __strip_reference_wrapper
2211 template<
typename _Tp>
2212 struct __strip_reference_wrapper<reference_wrapper<_Tp> >
2214 typedef _Tp& __type;
2218 template<
typename _Tp>
2219 using __decay_t =
typename decay<_Tp>::type;
2221 template<
typename _Tp>
2222 using __decay_and_strip = __strip_reference_wrapper<__decay_t<_Tp>>;
2227 template<
bool,
typename _Tp =
void>
2232 template<
typename _Tp>
2234 {
typedef _Tp type; };
2239 template<
bool _Cond,
typename _Tp =
void>
2240 using __enable_if_t =
typename enable_if<_Cond, _Tp>::type;
2243 template<
typename... _Cond>
2244 using _Require = __enable_if_t<__and_<_Cond...>::value>;
2247 template<
typename _Tp>
2248 using __remove_cvref_t
2249 =
typename remove_cv<typename remove_reference<_Tp>::type>::type;
2254 template<
bool _Cond,
typename _Iftrue,
typename _Iffalse>
2256 {
typedef _Iftrue type; };
2259 template<
typename _Iftrue,
typename _Iffalse>
2261 {
typedef _Iffalse type; };
2264 template<
typename... _Tp>
2270 struct __do_common_type_impl
2272 template<
typename _Tp,
typename _Up>
2274 = decltype(
true ? std::declval<_Tp>() : std::declval<_Up>());
2278 template<
typename _Tp,
typename _Up>
2279 static __success_type<__decay_t<__cond_t<_Tp, _Up>>>
2282 #if __cplusplus > 201703L
2285 template<
typename _Tp,
typename _Up>
2286 static __success_type<__remove_cvref_t<__cond_t<const _Tp&, const _Up&>>>
2290 template<
typename,
typename>
2291 static __failure_type
2294 template<
typename _Tp,
typename _Up>
2295 static decltype(_S_test_2<_Tp, _Up>(0))
2305 template<
typename _Tp0>
2311 template<
typename _Tp1,
typename _Tp2,
2312 typename _Dp1 = __decay_t<_Tp1>,
typename _Dp2 = __decay_t<_Tp2>>
2313 struct __common_type_impl
2317 using type = common_type<_Dp1, _Dp2>;
2320 template<
typename _Tp1,
typename _Tp2>
2321 struct __common_type_impl<_Tp1, _Tp2, _Tp1, _Tp2>
2322 :
private __do_common_type_impl
2326 using type = decltype(_S_test<_Tp1, _Tp2>(0));
2330 template<
typename _Tp1,
typename _Tp2>
2331 struct common_type<_Tp1, _Tp2>
2332 :
public __common_type_impl<_Tp1, _Tp2>::type
2335 template<
typename...>
2336 struct __common_type_pack
2339 template<
typename,
typename,
typename =
void>
2340 struct __common_type_fold;
2343 template<
typename _Tp1,
typename _Tp2,
typename... _Rp>
2344 struct common_type<_Tp1, _Tp2, _Rp...>
2345 :
public __common_type_fold<common_type<_Tp1, _Tp2>,
2346 __common_type_pack<_Rp...>>
2352 template<
typename _CTp,
typename... _Rp>
2353 struct __common_type_fold<_CTp, __common_type_pack<_Rp...>,
2354 __void_t<typename _CTp::type>>
2355 :
public common_type<typename _CTp::type, _Rp...>
2359 template<
typename _CTp,
typename _Rp>
2360 struct __common_type_fold<_CTp, _Rp, void>
2363 template<typename _Tp, bool = is_enum<_Tp>::value>
2364 struct __underlying_type_impl
2366 using type = __underlying_type(_Tp);
2369 template<
typename _Tp>
2370 struct __underlying_type_impl<_Tp, false>
2375 template<
typename _Tp>
2377 :
public __underlying_type_impl<_Tp>
2381 template<
typename _Tp>
2382 struct __declval_protector
2384 static const bool __stop =
false;
2392 template<
typename _Tp>
2393 auto declval() noexcept -> decltype(__declval<_Tp>(0))
2395 static_assert(__declval_protector<_Tp>::__stop,
2396 "declval() must not be used!");
2397 return __declval<_Tp>(0);
2401 template<
typename _Signature>
2406 #define __cpp_lib_result_of_sfinae 201210L
2409 struct __invoke_memfun_ref { };
2410 struct __invoke_memfun_deref { };
2411 struct __invoke_memobj_ref { };
2412 struct __invoke_memobj_deref { };
2413 struct __invoke_other { };
2416 template<
typename _Tp,
typename _Tag>
2417 struct __result_of_success : __success_type<_Tp>
2418 {
using __invoke_type = _Tag; };
2421 struct __result_of_memfun_ref_impl
2423 template<
typename _Fp,
typename _Tp1,
typename... _Args>
2424 static __result_of_success<decltype(
2425 (std::declval<_Tp1>().*std::declval<_Fp>())(std::declval<_Args>()...)
2426 ), __invoke_memfun_ref> _S_test(
int);
2428 template<
typename...>
2429 static __failure_type _S_test(...);
2432 template<
typename _MemPtr,
typename _Arg,
typename... _Args>
2433 struct __result_of_memfun_ref
2434 :
private __result_of_memfun_ref_impl
2436 typedef decltype(_S_test<_MemPtr, _Arg, _Args...>(0)) type;
2440 struct __result_of_memfun_deref_impl
2442 template<
typename _Fp,
typename _Tp1,
typename... _Args>
2443 static __result_of_success<decltype(
2444 ((*std::declval<_Tp1>()).*std::declval<_Fp>())(std::declval<_Args>()...)
2445 ), __invoke_memfun_deref> _S_test(
int);
2447 template<
typename...>
2448 static __failure_type _S_test(...);
2451 template<
typename _MemPtr,
typename _Arg,
typename... _Args>
2452 struct __result_of_memfun_deref
2453 :
private __result_of_memfun_deref_impl
2455 typedef decltype(_S_test<_MemPtr, _Arg, _Args...>(0)) type;
2459 struct __result_of_memobj_ref_impl
2461 template<
typename _Fp,
typename _Tp1>
2462 static __result_of_success<decltype(
2463 std::declval<_Tp1>().*std::declval<_Fp>()
2464 ), __invoke_memobj_ref> _S_test(
int);
2466 template<
typename,
typename>
2467 static __failure_type _S_test(...);
2470 template<
typename _MemPtr,
typename _Arg>
2471 struct __result_of_memobj_ref
2472 :
private __result_of_memobj_ref_impl
2474 typedef decltype(_S_test<_MemPtr, _Arg>(0)) type;
2478 struct __result_of_memobj_deref_impl
2480 template<
typename _Fp,
typename _Tp1>
2481 static __result_of_success<decltype(
2482 (*std::declval<_Tp1>()).*std::declval<_Fp>()
2483 ), __invoke_memobj_deref> _S_test(
int);
2485 template<
typename,
typename>
2486 static __failure_type _S_test(...);
2489 template<
typename _MemPtr,
typename _Arg>
2490 struct __result_of_memobj_deref
2491 :
private __result_of_memobj_deref_impl
2493 typedef decltype(_S_test<_MemPtr, _Arg>(0)) type;
2496 template<typename _MemPtr, typename _Arg>
2497 struct __result_of_memobj;
2499 template<typename _Res, typename _Class, typename _Arg>
2500 struct __result_of_memobj<_Res _Class::*, _Arg>
2502 typedef __remove_cvref_t<_Arg> _Argval;
2503 typedef _Res _Class::* _MemPtr;
2504 typedef typename __conditional_t<__or_<is_same<_Argval, _Class>,
2505 is_base_of<_Class, _Argval>>::value,
2506 __result_of_memobj_ref<_MemPtr, _Arg>,
2507 __result_of_memobj_deref<_MemPtr, _Arg>
2511 template<
typename _MemPtr,
typename _Arg,
typename... _Args>
2512 struct __result_of_memfun;
2514 template<
typename _Res,
typename _Class,
typename _Arg,
typename... _Args>
2515 struct __result_of_memfun<_Res _Class::*, _Arg, _Args...>
2517 typedef typename remove_reference<_Arg>::type _Argval;
2518 typedef _Res _Class::* _MemPtr;
2519 typedef typename __conditional_t<is_base_of<_Class, _Argval>::value,
2520 __result_of_memfun_ref<_MemPtr, _Arg, _Args...>,
2521 __result_of_memfun_deref<_MemPtr, _Arg, _Args...>
2530 template<
typename _Tp,
typename _Up = __remove_cvref_t<_Tp>>
2536 template<
typename _Tp,
typename _Up>
2537 struct __inv_unwrap<_Tp, reference_wrapper<_Up>>
2542 template<bool, bool,
typename _Functor,
typename... _ArgTypes>
2543 struct __result_of_impl
2545 typedef __failure_type type;
2548 template<
typename _MemPtr,
typename _Arg>
2549 struct __result_of_impl<true, false, _MemPtr, _Arg>
2550 :
public __result_of_memobj<__decay_t<_MemPtr>,
2551 typename __inv_unwrap<_Arg>::type>
2554 template<
typename _MemPtr,
typename _Arg,
typename... _Args>
2555 struct __result_of_impl<false, true, _MemPtr, _Arg, _Args...>
2556 :
public __result_of_memfun<__decay_t<_MemPtr>,
2557 typename __inv_unwrap<_Arg>::type, _Args...>
2561 struct __result_of_other_impl
2563 template<
typename _Fn,
typename... _Args>
2564 static __result_of_success<decltype(
2565 std::declval<_Fn>()(std::declval<_Args>()...)
2566 ), __invoke_other> _S_test(
int);
2568 template<
typename...>
2569 static __failure_type _S_test(...);
2572 template<
typename _Functor,
typename... _ArgTypes>
2573 struct __result_of_impl<false, false, _Functor, _ArgTypes...>
2574 :
private __result_of_other_impl
2576 typedef decltype(_S_test<_Functor, _ArgTypes...>(0)) type;
2580 template<typename _Functor, typename... _ArgTypes>
2581 struct __invoke_result
2582 : public __result_of_impl<
2583 is_member_object_pointer<
2584 typename remove_reference<_Functor>::type
2586 is_member_function_pointer<
2587 typename remove_reference<_Functor>::type
2589 _Functor, _ArgTypes...
2594 template<
typename _Functor,
typename... _ArgTypes>
2595 struct result_of<_Functor(_ArgTypes...)>
2596 :
public __invoke_result<_Functor, _ArgTypes...>
2597 { } _GLIBCXX17_DEPRECATED_SUGGEST(
"std::invoke_result");
2599 #if __cplusplus >= 201402L
2601 template<
size_t _Len,
size_t _Align =
2602 __alignof__(
typename __aligned_storage_msa<_Len>::__type)>
2605 template <
size_t _Len,
typename... _Types>
2606 using aligned_union_t =
typename aligned_union<_Len, _Types...>::type;
2609 template<
typename _Tp>
2613 template<
bool _Cond,
typename _Tp =
void>
2617 template<
bool _Cond,
typename _Iftrue,
typename _Iffalse>
2621 template<
typename... _Tp>
2625 template<
typename _Tp>
2629 template<
typename _Tp>
2633 #if __cplusplus >= 201703L || !defined(__STRICT_ANSI__)
2634 #define __cpp_lib_void_t 201411L
2642 template<
typename _Default,
typename _AlwaysVoid,
2643 template<
typename...>
class _Op,
typename... _Args>
2647 using type = _Default;
2651 template<
typename _Default,
template<
typename...>
class _Op,
2653 struct __detector<_Default, __void_t<_Op<_Args...>>, _Op, _Args...>
2656 using type = _Op<_Args...>;
2660 template<
typename _Default,
template<
typename...>
class _Op,
2662 using __detected_or = __detector<_Default, void, _Op, _Args...>;
2665 template<
typename _Default,
template<
typename...>
class _Op,
2667 using __detected_or_t
2668 =
typename __detected_or<_Default, _Op, _Args...>::type;
2674 #define _GLIBCXX_HAS_NESTED_TYPE(_NTYPE) \
2675 template<typename _Tp, typename = __void_t<>> \
2676 struct __has_##_NTYPE \
2679 template<typename _Tp> \
2680 struct __has_##_NTYPE<_Tp, __void_t<typename _Tp::_NTYPE>> \
2684 template <
typename _Tp>
2685 struct __is_swappable;
2687 template <
typename _Tp>
2688 struct __is_nothrow_swappable;
2695 template<
typename _Tp>
2696 struct __is_tuple_like
2697 :
public __is_tuple_like_impl<__remove_cvref_t<_Tp>>::type
2701 template<
typename _Tp>
2702 _GLIBCXX20_CONSTEXPR
2704 _Require<__not_<__is_tuple_like<_Tp>>,
2705 is_move_constructible<_Tp>,
2706 is_move_assignable<_Tp>>
2708 noexcept(__and_<is_nothrow_move_constructible<_Tp>,
2709 is_nothrow_move_assignable<_Tp>>::value);
2711 template<
typename _Tp,
size_t _Nm>
2712 _GLIBCXX20_CONSTEXPR
2714 __enable_if_t<__is_swappable<_Tp>::value>
2715 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
2716 noexcept(__is_nothrow_swappable<_Tp>::value);
2719 namespace __swappable_details {
2722 struct __do_is_swappable_impl
2724 template<
typename _Tp,
typename
2725 = decltype(
swap(std::declval<_Tp&>(), std::declval<_Tp&>()))>
2732 struct __do_is_nothrow_swappable_impl
2734 template<
typename _Tp>
2735 static __bool_constant<
2736 noexcept(
swap(std::declval<_Tp&>(), std::declval<_Tp&>()))
2745 template<
typename _Tp>
2746 struct __is_swappable_impl
2747 :
public __swappable_details::__do_is_swappable_impl
2749 typedef decltype(__test<_Tp>(0)) type;
2752 template<typename _Tp>
2753 struct __is_nothrow_swappable_impl
2754 : public __swappable_details::__do_is_nothrow_swappable_impl
2756 typedef decltype(__test<_Tp>(0)) type;
2759 template<typename _Tp>
2760 struct __is_swappable
2761 : public __is_swappable_impl<_Tp>::type
2764 template<
typename _Tp>
2765 struct __is_nothrow_swappable
2766 :
public __is_nothrow_swappable_impl<_Tp>::type
2770 #if __cplusplus > 201402L || !defined(__STRICT_ANSI__)
2771 #define __cpp_lib_is_swappable 201603L
2775 template<
typename _Tp>
2777 :
public __is_swappable_impl<_Tp>::type
2779 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
2780 "template argument must be a complete class or an unbounded array");
2784 template<
typename _Tp>
2786 :
public __is_nothrow_swappable_impl<_Tp>::type
2788 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
2789 "template argument must be a complete class or an unbounded array");
2792 #if __cplusplus >= 201402L
2794 template<
typename _Tp>
2799 template<
typename _Tp>
2805 namespace __swappable_with_details {
2808 struct __do_is_swappable_with_impl
2810 template<
typename _Tp,
typename _Up,
typename
2811 = decltype(
swap(std::declval<_Tp>(), std::declval<_Up>())),
2813 = decltype(
swap(std::declval<_Up>(), std::declval<_Tp>()))>
2816 template<
typename,
typename>
2820 struct __do_is_nothrow_swappable_with_impl
2822 template<
typename _Tp,
typename _Up>
2823 static __bool_constant<
2824 noexcept(
swap(std::declval<_Tp>(), std::declval<_Up>()))
2826 noexcept(
swap(std::declval<_Up>(), std::declval<_Tp>()))
2829 template<
typename,
typename>
2835 template<
typename _Tp,
typename _Up>
2836 struct __is_swappable_with_impl
2837 :
public __swappable_with_details::__do_is_swappable_with_impl
2839 typedef decltype(__test<_Tp, _Up>(0)) type;
2843 template<typename _Tp>
2844 struct __is_swappable_with_impl<_Tp&, _Tp&>
2845 : public __swappable_details::__do_is_swappable_impl
2847 typedef decltype(__test<_Tp&>(0)) type;
2850 template<typename _Tp, typename _Up>
2851 struct __is_nothrow_swappable_with_impl
2852 : public __swappable_with_details::__do_is_nothrow_swappable_with_impl
2854 typedef decltype(__test<_Tp, _Up>(0)) type;
2858 template<typename _Tp>
2859 struct __is_nothrow_swappable_with_impl<_Tp&, _Tp&>
2860 : public __swappable_details::__do_is_nothrow_swappable_impl
2862 typedef decltype(__test<_Tp&>(0)) type;
2867 template<typename _Tp, typename _Up>
2869 : public __is_swappable_with_impl<_Tp, _Up>::type
2871 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
2872 "first template argument must be a complete class or an unbounded array");
2873 static_assert(std::__is_complete_or_unbounded(__type_identity<_Up>{}),
2874 "second template argument must be a complete class or an unbounded array");
2878 template<
typename _Tp,
typename _Up>
2880 :
public __is_nothrow_swappable_with_impl<_Tp, _Up>::type
2882 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
2883 "first template argument must be a complete class or an unbounded array");
2884 static_assert(std::__is_complete_or_unbounded(__type_identity<_Up>{}),
2885 "second template argument must be a complete class or an unbounded array");
2888 #if __cplusplus >= 201402L
2890 template<
typename _Tp,
typename _Up>
2895 template<
typename _Tp,
typename _Up>
2907 template<
typename _Result,
typename _Ret,
2912 template<
typename _Result,
typename _Ret>
2913 struct __is_invocable_impl<_Result, _Ret,
2915 __void_t<typename _Result::type>>
2919 #pragma GCC diagnostic push
2920 #pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
2922 template<
typename _Result,
typename _Ret>
2923 struct __is_invocable_impl<_Result, _Ret,
2925 __void_t<typename _Result::type>>
2930 static typename _Result::type _S_get();
2932 template<
typename _Tp>
2933 static void _S_conv(_Tp);
2936 template<typename _Tp, typename = decltype(_S_conv<_Tp>(_S_get()))>
2940 template<
typename _Tp>
2945 using type = decltype(_S_test<_Ret>(1));
2947 #pragma GCC diagnostic pop
2949 template<
typename _Fn,
typename... _ArgTypes>
2950 struct __is_invocable
2951 : __is_invocable_impl<__invoke_result<_Fn, _ArgTypes...>, void>::type
2954 template<
typename _Fn,
typename _Tp,
typename... _Args>
2955 constexpr
bool __call_is_nt(__invoke_memfun_ref)
2957 using _Up =
typename __inv_unwrap<_Tp>::type;
2958 return noexcept((std::declval<_Up>().*std::declval<_Fn>())(
2959 std::declval<_Args>()...));
2962 template<
typename _Fn,
typename _Tp,
typename... _Args>
2963 constexpr
bool __call_is_nt(__invoke_memfun_deref)
2965 return noexcept(((*std::declval<_Tp>()).*std::declval<_Fn>())(
2966 std::declval<_Args>()...));
2969 template<
typename _Fn,
typename _Tp>
2970 constexpr
bool __call_is_nt(__invoke_memobj_ref)
2972 using _Up =
typename __inv_unwrap<_Tp>::type;
2973 return noexcept(std::declval<_Up>().*std::declval<_Fn>());
2976 template<
typename _Fn,
typename _Tp>
2977 constexpr
bool __call_is_nt(__invoke_memobj_deref)
2979 return noexcept((*std::declval<_Tp>()).*std::declval<_Fn>());
2982 template<
typename _Fn,
typename... _Args>
2983 constexpr
bool __call_is_nt(__invoke_other)
2985 return noexcept(std::declval<_Fn>()(std::declval<_Args>()...));
2988 template<
typename _Result,
typename _Fn,
typename... _Args>
2989 struct __call_is_nothrow
2991 std::__call_is_nt<_Fn, _Args...>(typename _Result::__invoke_type{})
2995 template<
typename _Fn,
typename... _Args>
2996 using __call_is_nothrow_
2997 = __call_is_nothrow<__invoke_result<_Fn, _Args...>, _Fn, _Args...>;
3000 template<
typename _Fn,
typename... _Args>
3001 struct __is_nothrow_invocable
3002 : __and_<__is_invocable<_Fn, _Args...>,
3003 __call_is_nothrow_<_Fn, _Args...>>::type
3006 #pragma GCC diagnostic push
3007 #pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
3008 struct __nonesuchbase {};
3009 struct __nonesuch :
private __nonesuchbase {
3010 ~__nonesuch() =
delete;
3011 __nonesuch(__nonesuch
const&) =
delete;
3012 void operator=(__nonesuch
const&) =
delete;
3014 #pragma GCC diagnostic pop
3017 #if __cplusplus >= 201703L
3018 # define __cpp_lib_is_invocable 201703L
3021 template<
typename _Functor,
typename... _ArgTypes>
3023 :
public __invoke_result<_Functor, _ArgTypes...>
3025 static_assert(std::__is_complete_or_unbounded(__type_identity<_Functor>{}),
3026 "_Functor must be a complete class or an unbounded array");
3027 static_assert((std::__is_complete_or_unbounded(
3028 __type_identity<_ArgTypes>{}) && ...),
3029 "each argument type must be a complete class or an unbounded array");
3033 template<
typename _Fn,
typename... _Args>
3037 template<
typename _Fn,
typename... _ArgTypes>
3039 : __is_invocable_impl<__invoke_result<_Fn, _ArgTypes...>, void>::type
3041 static_assert(std::__is_complete_or_unbounded(__type_identity<_Fn>{}),
3042 "_Fn must be a complete class or an unbounded array");
3043 static_assert((std::__is_complete_or_unbounded(
3044 __type_identity<_ArgTypes>{}) && ...),
3045 "each argument type must be a complete class or an unbounded array");
3049 template<
typename _Ret,
typename _Fn,
typename... _ArgTypes>
3051 : __is_invocable_impl<__invoke_result<_Fn, _ArgTypes...>, _Ret>::type
3053 static_assert(std::__is_complete_or_unbounded(__type_identity<_Fn>{}),
3054 "_Fn must be a complete class or an unbounded array");
3055 static_assert((std::__is_complete_or_unbounded(
3056 __type_identity<_ArgTypes>{}) && ...),
3057 "each argument type must be a complete class or an unbounded array");
3058 static_assert(std::__is_complete_or_unbounded(__type_identity<_Ret>{}),
3059 "_Ret must be a complete class or an unbounded array");
3063 template<
typename _Fn,
typename... _ArgTypes>
3065 : __and_<__is_invocable_impl<__invoke_result<_Fn, _ArgTypes...>, void>,
3066 __call_is_nothrow_<_Fn, _ArgTypes...>>::type
3068 static_assert(std::__is_complete_or_unbounded(__type_identity<_Fn>{}),
3069 "_Fn must be a complete class or an unbounded array");
3070 static_assert((std::__is_complete_or_unbounded(
3071 __type_identity<_ArgTypes>{}) && ...),
3072 "each argument type must be a complete class or an unbounded array");
3076 template<
typename _Result,
typename _Ret,
typename =
void>
3077 struct __is_nt_invocable_impl :
false_type { };
3079 template<
typename _Result,
typename _Ret>
3080 struct __is_nt_invocable_impl<_Result, _Ret,
3081 __void_t<typename _Result::type>>
3082 : __or_<is_void<_Ret>,
3083 __is_nothrow_convertible<typename _Result::type, _Ret>>
3088 template<
typename _Ret,
typename _Fn,
typename... _ArgTypes>
3090 : __and_<__is_nt_invocable_impl<__invoke_result<_Fn, _ArgTypes...>, _Ret>,
3091 __call_is_nothrow_<_Fn, _ArgTypes...>>::type
3093 static_assert(std::__is_complete_or_unbounded(__type_identity<_Fn>{}),
3094 "_Fn must be a complete class or an unbounded array");
3095 static_assert((std::__is_complete_or_unbounded(
3096 __type_identity<_ArgTypes>{}) && ...),
3097 "each argument type must be a complete class or an unbounded array");
3098 static_assert(std::__is_complete_or_unbounded(__type_identity<_Ret>{}),
3099 "_Ret must be a complete class or an unbounded array");
3103 #if __cplusplus >= 201703L
3104 # define __cpp_lib_type_trait_variable_templates 201510L
3119 template <
typename _Tp>
3121 template <
typename _Tp>
3123 template <
typename _Tp>
3125 template <
typename _Tp>
3127 template <
typename _Tp>
3129 template <
typename _Tp>
3131 template <
typename _Tp>
3132 inline constexpr
bool is_lvalue_reference_v =
3134 template <
typename _Tp>
3135 inline constexpr
bool is_rvalue_reference_v =
3137 template <
typename _Tp>
3138 inline constexpr
bool is_member_object_pointer_v =
3140 template <
typename _Tp>
3141 inline constexpr
bool is_member_function_pointer_v =
3143 template <
typename _Tp>
3145 template <
typename _Tp>
3147 template <
typename _Tp>
3149 template <
typename _Tp>
3151 template <
typename _Tp>
3153 template <
typename _Tp>
3155 template <
typename _Tp>
3157 template <
typename _Tp>
3159 template <
typename _Tp>
3161 template <
typename _Tp>
3163 template <
typename _Tp>
3165 template <
typename _Tp>
3167 template <
typename _Tp>
3169 template <
typename _Tp>
3171 template <
typename _Tp>
3172 inline constexpr
bool is_trivially_copyable_v =
3174 template <
typename _Tp>
3176 #pragma GCC diagnostic push
3177 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
3178 template <
typename _Tp>
3179 _GLIBCXX20_DEPRECATED(
"use is_standard_layout_v && is_trivial_v instead")
3180 inline constexpr
bool is_pod_v =
is_pod<_Tp>::value;
3181 template <typename _Tp>
3182 _GLIBCXX17_DEPRECATED
3183 inline constexpr
bool is_literal_type_v =
is_literal_type<_Tp>::value;
3184 #pragma GCC diagnostic pop
3185 template <
typename _Tp>
3187 template <
typename _Tp>
3189 template <
typename _Tp>
3191 template <
typename _Tp>
3193 template <
typename _Tp>
3195 template <
typename _Tp>
3197 template <
typename _Tp,
typename... _Args>
3198 inline constexpr
bool is_constructible_v =
3200 template <
typename _Tp>
3201 inline constexpr
bool is_default_constructible_v =
3203 template <
typename _Tp>
3204 inline constexpr
bool is_copy_constructible_v =
3206 template <
typename _Tp>
3207 inline constexpr
bool is_move_constructible_v =
3209 template <
typename _Tp,
typename _Up>
3211 template <
typename _Tp>
3213 template <
typename _Tp>
3215 template <
typename _Tp>
3217 template <
typename _Tp,
typename... _Args>
3218 inline constexpr
bool is_trivially_constructible_v =
3220 template <
typename _Tp>
3221 inline constexpr
bool is_trivially_default_constructible_v =
3223 template <
typename _Tp>
3224 inline constexpr
bool is_trivially_copy_constructible_v =
3226 template <
typename _Tp>
3227 inline constexpr
bool is_trivially_move_constructible_v =
3229 template <
typename _Tp,
typename _Up>
3230 inline constexpr
bool is_trivially_assignable_v =
3232 template <
typename _Tp>
3233 inline constexpr
bool is_trivially_copy_assignable_v =
3235 template <
typename _Tp>
3236 inline constexpr
bool is_trivially_move_assignable_v =
3238 template <
typename _Tp>
3239 inline constexpr
bool is_trivially_destructible_v =
3241 template <
typename _Tp,
typename... _Args>
3242 inline constexpr
bool is_nothrow_constructible_v =
3244 template <
typename _Tp>
3245 inline constexpr
bool is_nothrow_default_constructible_v =
3247 template <
typename _Tp>
3248 inline constexpr
bool is_nothrow_copy_constructible_v =
3250 template <
typename _Tp>
3251 inline constexpr
bool is_nothrow_move_constructible_v =
3253 template <
typename _Tp,
typename _Up>
3254 inline constexpr
bool is_nothrow_assignable_v =
3256 template <
typename _Tp>
3257 inline constexpr
bool is_nothrow_copy_assignable_v =
3259 template <
typename _Tp>
3260 inline constexpr
bool is_nothrow_move_assignable_v =
3262 template <
typename _Tp>
3263 inline constexpr
bool is_nothrow_destructible_v =
3265 template <
typename _Tp>
3266 inline constexpr
bool has_virtual_destructor_v =
3268 template <
typename _Tp>
3270 template <
typename _Tp>
3272 template <
typename _Tp,
unsigned _Idx = 0>
3274 #ifdef _GLIBCXX_HAVE_BUILTIN_IS_SAME
3275 template <
typename _Tp,
typename _Up>
3276 inline constexpr
bool is_same_v = __is_same(_Tp, _Up);
3278 template <
typename _Tp,
typename _Up>
3281 template <
typename _Base,
typename _Derived>
3283 template <
typename _From,
typename _To>
3285 template<
typename _Fn,
typename... _Args>
3286 inline constexpr
bool is_invocable_v =
is_invocable<_Fn, _Args...>::value;
3287 template<
typename _Fn,
typename... _Args>
3288 inline constexpr
bool is_nothrow_invocable_v
3290 template<
typename _Ret,
typename _Fn,
typename... _Args>
3291 inline constexpr
bool is_invocable_r_v
3293 template<
typename _Ret,
typename _Fn,
typename... _Args>
3294 inline constexpr
bool is_nothrow_invocable_r_v
3298 #ifdef _GLIBCXX_HAVE_BUILTIN_HAS_UNIQ_OBJ_REP
3299 # define __cpp_lib_has_unique_object_representations 201606L
3302 template<
typename _Tp>
3305 remove_cv_t<remove_all_extents_t<_Tp>>
3308 static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
3309 "template argument must be a complete class or an unbounded array");
3313 template<
typename _Tp>
3314 inline constexpr
bool has_unique_object_representations_v
3318 #ifdef _GLIBCXX_HAVE_BUILTIN_IS_AGGREGATE
3319 # define __cpp_lib_is_aggregate 201703L
3322 template<
typename _Tp>
3328 template<
typename _Tp>
3333 #if __cplusplus >= 202002L
3339 #define __cpp_lib_remove_cvref 201711L
3341 template<
typename _Tp>
3346 template<
typename _Tp>
3347 struct remove_cvref<_Tp&>
3351 template<
typename _Tp>
3352 struct remove_cvref<_Tp&&>
3356 template<
typename _Tp>
3364 #define __cpp_lib_type_identity 201806L
3365 template<
typename _Tp>
3366 struct type_identity {
using type = _Tp; };
3368 template<
typename _Tp>
3372 #define __cpp_lib_unwrap_ref 201811L
3378 template<
typename _Tp>
3381 template<
typename _Tp>
3384 template<
typename _Tp>
3385 using unwrap_reference_t =
typename unwrap_reference<_Tp>::type;
3392 template<
typename _Tp>
3395 template<
typename _Tp>
3396 using unwrap_ref_decay_t =
typename unwrap_ref_decay<_Tp>::type;
3399 #define __cpp_lib_bounded_array_traits 201902L
3403 template<
typename _Tp>
3405 :
public __is_array_known_bounds<_Tp>
3410 template<
typename _Tp>
3412 :
public __is_array_unknown_bounds<_Tp>
3417 template<
typename _Tp>
3423 template<
typename _Tp>
3427 #if __has_builtin(__is_layout_compatible)
3430 template<
typename _Tp,
typename _Up>
3437 template<
typename _Tp,
typename _Up>
3439 = __is_layout_compatible(_Tp, _Up);
3441 #if __has_builtin(__builtin_is_corresponding_member)
3442 #define __cpp_lib_is_layout_compatible 201907L
3445 template<
typename _S1,
typename _S2,
typename _M1,
typename _M2>
3448 {
return __builtin_is_corresponding_member(__m1, __m2); }
3452 #if __has_builtin(__is_pointer_interconvertible_base_of)
3455 template<
typename _Base,
typename _Derived>
3457 :
bool_constant<__is_pointer_interconvertible_base_of(_Base, _Derived)>
3462 template<
typename _Base,
typename _Derived>
3464 = __is_pointer_interconvertible_base_of(_Base, _Derived);
3466 #if __has_builtin(__builtin_is_pointer_interconvertible_with_class)
3467 #define __cpp_lib_is_pointer_interconvertible 201907L
3472 template<
typename _Tp,
typename _Mem>
3475 {
return __builtin_is_pointer_interconvertible_with_class(__mp); }
3479 #if __cplusplus > 202002L
3480 #define __cpp_lib_is_scoped_enum 202011L
3485 template<
typename _Tp>
3486 struct is_scoped_enum
3490 template<
typename _Tp>
3491 requires __is_enum(_Tp)
3492 && requires(_Tp __t) { __t = __t; }
3493 struct is_scoped_enum<_Tp>
3494 :
bool_constant<!requires(_Tp __t, void(*__f)(int)) { __f(__t); }>
3499 template<
typename _Tp>
3500 requires __is_enum(_Tp)
3501 && requires(_Tp __t) { __t = __t; }
3502 struct is_scoped_enum<const _Tp>
3503 :
bool_constant<!requires(_Tp __t, void(*__f)(int)) { __f(__t); }>
3508 template<
typename _Tp>
3509 inline constexpr
bool is_scoped_enum_v = is_scoped_enum<_Tp>::value;
3513 #if _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED
3514 #define __cpp_lib_is_constant_evaluated 201811L
3518 constexpr
inline bool
3521 #if __cpp_if_consteval >= 202106L
3522 if consteval {
return true; }
else {
return false; }
3524 return __builtin_is_constant_evaluated();
3530 template<
typename _From,
typename _To>
3531 using __copy_cv =
typename __match_cv_qualifiers<_From, _To>::__type;
3533 template<
typename _Xp,
typename _Yp>
3535 = decltype(
false ?
declval<_Xp(&)()>()() :
declval<_Yp(&)()>()());
3537 template<
typename _Ap,
typename _Bp,
typename =
void>
3538 struct __common_ref_impl
3542 template<
typename _Ap,
typename _Bp>
3543 using __common_ref =
typename __common_ref_impl<_Ap, _Bp>::type;
3546 template<
typename _Xp,
typename _Yp>
3547 using __condres_cvref
3548 = __cond_res<__copy_cv<_Xp, _Yp>&, __copy_cv<_Yp, _Xp>&>;
3551 template<
typename _Xp,
typename _Yp>
3552 struct __common_ref_impl<_Xp&, _Yp&, __void_t<__condres_cvref<_Xp, _Yp>>>
3553 : enable_if<is_reference_v<__condres_cvref<_Xp, _Yp>>,
3554 __condres_cvref<_Xp, _Yp>>
3558 template<
typename _Xp,
typename _Yp>
3559 using __common_ref_C = remove_reference_t<__common_ref<_Xp&, _Yp&>>&&;
3562 template<
typename _Xp,
typename _Yp>
3563 struct __common_ref_impl<_Xp&&, _Yp&&,
3564 _Require<is_convertible<_Xp&&, __common_ref_C<_Xp, _Yp>>,
3565 is_convertible<_Yp&&, __common_ref_C<_Xp, _Yp>>>>
3566 {
using type = __common_ref_C<_Xp, _Yp>; };
3569 template<
typename _Xp,
typename _Yp>
3570 using __common_ref_D = __common_ref<const _Xp&, _Yp&>;
3573 template<
typename _Xp,
typename _Yp>
3574 struct __common_ref_impl<_Xp&&, _Yp&,
3575 _Require<is_convertible<_Xp&&, __common_ref_D<_Xp, _Yp>>>>
3576 {
using type = __common_ref_D<_Xp, _Yp>; };
3579 template<
typename _Xp,
typename _Yp>
3580 struct __common_ref_impl<_Xp&, _Yp&&>
3581 : __common_ref_impl<_Yp&&, _Xp&>
3585 template<
typename _Tp,
typename _Up,
3586 template<
typename>
class _TQual,
template<
typename>
class _UQual>
3587 struct basic_common_reference
3591 template<
typename _Tp>
3593 {
template<
typename _Up>
using __type = __copy_cv<_Tp, _Up>; };
3595 template<
typename _Tp>
3597 {
template<
typename _Up>
using __type = __copy_cv<_Tp, _Up>&; };
3599 template<
typename _Tp>
3600 struct __xref<_Tp&&>
3601 {
template<
typename _Up>
using __type = __copy_cv<_Tp, _Up>&&; };
3603 template<
typename _Tp1,
typename _Tp2>
3604 using __basic_common_ref
3605 =
typename basic_common_reference<remove_cvref_t<_Tp1>,
3606 remove_cvref_t<_Tp2>,
3607 __xref<_Tp1>::template __type,
3608 __xref<_Tp2>::template __type>::type;
3611 template<
typename... _Tp>
3612 struct common_reference;
3614 template<
typename... _Tp>
3615 using common_reference_t =
typename common_reference<_Tp...>::type;
3619 struct common_reference<>
3623 template<
typename _Tp0>
3624 struct common_reference<_Tp0>
3625 {
using type = _Tp0; };
3628 template<
typename _Tp1,
typename _Tp2,
int _Bullet = 1,
typename =
void>
3629 struct __common_reference_impl
3630 : __common_reference_impl<_Tp1, _Tp2, _Bullet + 1>
3634 template<
typename _Tp1,
typename _Tp2>
3635 struct common_reference<_Tp1, _Tp2>
3636 : __common_reference_impl<_Tp1, _Tp2>
3640 template<
typename _Tp1,
typename _Tp2>
3641 struct __common_reference_impl<_Tp1&, _Tp2&, 1,
3642 void_t<__common_ref<_Tp1&, _Tp2&>>>
3643 {
using type = __common_ref<_Tp1&, _Tp2&>; };
3645 template<
typename _Tp1,
typename _Tp2>
3646 struct __common_reference_impl<_Tp1&&, _Tp2&&, 1,
3647 void_t<__common_ref<_Tp1&&, _Tp2&&>>>
3648 {
using type = __common_ref<_Tp1&&, _Tp2&&>; };
3650 template<
typename _Tp1,
typename _Tp2>
3651 struct __common_reference_impl<_Tp1&, _Tp2&&, 1,
3652 void_t<__common_ref<_Tp1&, _Tp2&&>>>
3653 {
using type = __common_ref<_Tp1&, _Tp2&&>; };
3655 template<
typename _Tp1,
typename _Tp2>
3656 struct __common_reference_impl<_Tp1&&, _Tp2&, 1,
3657 void_t<__common_ref<_Tp1&&, _Tp2&>>>
3658 {
using type = __common_ref<_Tp1&&, _Tp2&>; };
3661 template<
typename _Tp1,
typename _Tp2>
3662 struct __common_reference_impl<_Tp1, _Tp2, 2,
3663 void_t<__basic_common_ref<_Tp1, _Tp2>>>
3664 {
using type = __basic_common_ref<_Tp1, _Tp2>; };
3667 template<
typename _Tp1,
typename _Tp2>
3668 struct __common_reference_impl<_Tp1, _Tp2, 3,
3669 void_t<__cond_res<_Tp1, _Tp2>>>
3670 {
using type = __cond_res<_Tp1, _Tp2>; };
3673 template<
typename _Tp1,
typename _Tp2>
3674 struct __common_reference_impl<_Tp1, _Tp2, 4,
3676 {
using type = common_type_t<_Tp1, _Tp2>; };
3679 template<
typename _Tp1,
typename _Tp2>
3680 struct __common_reference_impl<_Tp1, _Tp2, 5, void>
3684 template<
typename _Tp1,
typename _Tp2,
typename... _Rest>
3685 struct common_reference<_Tp1, _Tp2, _Rest...>
3686 : __common_type_fold<common_reference<_Tp1, _Tp2>,
3687 __common_type_pack<_Rest...>>
3691 template<
typename _Tp1,
typename _Tp2,
typename... _Rest>
3692 struct __common_type_fold<common_reference<_Tp1, _Tp2>,
3693 __common_type_pack<_Rest...>,
3694 void_t<common_reference_t<_Tp1, _Tp2>>>
3695 :
public common_reference<common_reference_t<_Tp1, _Tp2>, _Rest...>
3703 _GLIBCXX_END_NAMESPACE_VERSION
typename type_identity< _Tp >::type type_identity_t
constexpr bool is_corresponding_member(_M1 _S1::*__m1, _M2 _S2::*__m2) noexcept
typename remove_reference< _Tp >::type remove_reference_t
Alias template for remove_reference.
typename result_of< _Tp >::type result_of_t
Alias template for result_of.
constexpr bool is_nothrow_swappable_v
is_nothrow_swappable_v
typename add_rvalue_reference< _Tp >::type add_rvalue_reference_t
Alias template for add_rvalue_reference.
integral_constant< bool, __v > bool_constant
Alias template for compile-time boolean constant types.
constexpr bool is_nothrow_convertible_v
is_nothrow_convertible_v
typename make_unsigned< _Tp >::type make_unsigned_t
Alias template for make_unsigned.
void void_t
A metafunction that always yields void, used for detecting valid types.
constexpr bool is_swappable_v
is_swappable_v
typename aligned_storage< _Len, _Align >::type aligned_storage_t
Alias template for aligned_storage.
integral_constant< bool, true > true_type
The type used as a compile-time boolean with true value.
typename remove_cv< _Tp >::type remove_cv_t
Alias template for remove_cv.
typename remove_all_extents< _Tp >::type remove_all_extents_t
Alias template for remove_all_extents.
typename common_type< _Tp... >::type common_type_t
Alias template for common_type.
typename conditional< _Cond, _Iftrue, _Iffalse >::type conditional_t
Alias template for conditional.
typename add_const< _Tp >::type add_const_t
Alias template for add_const.
typename remove_pointer< _Tp >::type remove_pointer_t
Alias template for remove_pointer.
typename add_cv< _Tp >::type add_cv_t
Alias template for add_cv.
integral_constant< bool, false > false_type
The type used as a compile-time boolean with false value.
typename remove_const< _Tp >::type remove_const_t
Alias template for remove_const.
constexpr bool is_swappable_with_v
is_swappable_with_v
typename add_volatile< _Tp >::type add_volatile_t
Alias template for add_volatile.
typename remove_volatile< _Tp >::type remove_volatile_t
Alias template for remove_volatile.
typename add_lvalue_reference< _Tp >::type add_lvalue_reference_t
Alias template for add_lvalue_reference.
typename remove_cvref< _Tp >::type remove_cvref_t
typename add_pointer< _Tp >::type add_pointer_t
Alias template for add_pointer.
typename remove_extent< _Tp >::type remove_extent_t
Alias template for remove_extent.
constexpr bool is_constant_evaluated() noexcept
Returns true only when called during constant evaluation.
typename underlying_type< _Tp >::type underlying_type_t
Alias template for underlying_type.
typename decay< _Tp >::type decay_t
Alias template for decay.
typename make_signed< _Tp >::type make_signed_t
Alias template for make_signed.
constexpr bool is_pointer_interconvertible_with_class(_Mem _Tp::*__mp) noexcept
True if __mp points to the first member of a standard-layout type.
typename enable_if< _Cond, _Tp >::type enable_if_t
Alias template for enable_if.
typename invoke_result< _Fn, _Args... >::type invoke_result_t
std::invoke_result_t
constexpr bool is_nothrow_swappable_with_v
is_nothrow_swappable_with_v
constexpr bool is_bounded_array_v
constexpr bool is_unbounded_array_v
constexpr bool is_layout_compatible_v
constexpr bool is_pointer_interconvertible_base_of_v
auto declval() noexcept -> decltype(__declval< _Tp >(0))
void swap(any &__x, any &__y) noexcept
Exchange the states of two any objects.
ISO C++ entities toplevel namespace is std.
Primary class template for reference_wrapper.
is_member_function_pointer
is_null_pointer (LWG 2247).
__is_nullptr_t (deprecated extension).
is_nothrow_default_constructible
is_nothrow_copy_constructible
is_nothrow_move_constructible
is_nothrow_copy_assignable
is_nothrow_move_assignable
is_trivially_constructible
is_trivially_default_constructible
is_trivially_copy_constructible
is_trivially_move_constructible
is_trivially_copy_assignable
is_trivially_move_assignable
is_trivially_destructible
Provide aligned storage for types.
aligned_storage< _S_len, alignment_value >::type type
The storage.
Define a member typedef type only if a boolean constant is true.
Define a member typedef type to one of two argument types.
The underlying type of an enum.
Metafunctions used for detecting swappable types: p0185r1.
is_nothrow_swappable_with
std::is_nothrow_invocable
std::is_nothrow_invocable_r
has_unique_object_representations
True for a type that is an array of known bound.
True for a type that is an array of unknown bound.
True if _Derived is standard-layout and has a base class of type _Base