30#ifndef _GLIBCXX_CONCEPTS
31#define _GLIBCXX_CONCEPTS 1
33#pragma GCC system_header
35#define __glibcxx_want_concepts
38#ifdef __cpp_lib_concepts
48namespace std _GLIBCXX_VISIBILITY(default)
50_GLIBCXX_BEGIN_NAMESPACE_VERSION
56 template<
typename _Tp,
typename _Up>
57 concept __same_as = std::is_same_v<_Tp, _Up>;
61 template<
typename _Tp,
typename _Up>
63 = __detail::__same_as<_Tp, _Up> && __detail::__same_as<_Up, _Tp>;
66 template<
typename _Derived,
typename _Base>
67 concept derived_from = __is_base_of(_Base, _Derived)
68 && is_convertible_v<const volatile _Derived*, const volatile _Base*>;
71 template<
typename _From,
typename _To>
72 concept convertible_to = is_convertible_v<_From, _To>
73 &&
requires {
static_cast<_To
>(std::declval<_From>()); };
76 template<
typename _Tp,
typename _Up>
77 concept common_reference_with
78 = same_as<common_reference_t<_Tp, _Up>, common_reference_t<_Up, _Tp>>
79 && convertible_to<_Tp, common_reference_t<_Tp, _Up>>
80 && convertible_to<_Up, common_reference_t<_Tp, _Up>>;
83 template<
typename _Tp,
typename _Up>
85 = same_as<common_type_t<_Tp, _Up>, common_type_t<_Up, _Tp>>
87 static_cast<common_type_t<_Tp, _Up>
>(std::declval<_Tp>());
88 static_cast<common_type_t<_Tp, _Up>
>(std::declval<_Up>());
90 && common_reference_with<add_lvalue_reference_t<const _Tp>,
91 add_lvalue_reference_t<const _Up>>
92 && common_reference_with<add_lvalue_reference_t<common_type_t<_Tp, _Up>>,
94 add_lvalue_reference_t<const _Tp>,
95 add_lvalue_reference_t<const _Up>>>;
99 template<
typename _Tp>
100 concept integral = is_integral_v<_Tp>;
102 template<
typename _Tp>
103 concept signed_integral = integral<_Tp> && is_signed_v<_Tp>;
105 template<
typename _Tp>
106 concept unsigned_integral = integral<_Tp> && !signed_integral<_Tp>;
108 template<
typename _Tp>
109 concept floating_point = is_floating_point_v<_Tp>;
113 template<
typename _Tp>
114 using __cref =
const remove_reference_t<_Tp>&;
116 template<
typename _Tp>
117 concept __class_or_enum
118 = is_class_v<_Tp> || is_union_v<_Tp> || is_enum_v<_Tp>;
120 template<
typename _Tp>
121 constexpr bool __destructible_impl =
false;
122 template<
typename _Tp>
123 requires requires(_Tp& __t) { { __t.~_Tp() }
noexcept; }
124 constexpr bool __destructible_impl<_Tp> =
true;
126 template<
typename _Tp>
127 constexpr bool __destructible = __destructible_impl<_Tp>;
128 template<
typename _Tp>
129 constexpr bool __destructible<_Tp&> =
true;
130 template<
typename _Tp>
131 constexpr bool __destructible<_Tp&&> =
true;
132 template<
typename _Tp,
size_t _Nm>
133 constexpr bool __destructible<_Tp[_Nm]> = __destructible<_Tp>;
138 template<
typename _Lhs,
typename _Rhs>
139 concept assignable_from
140 = is_lvalue_reference_v<_Lhs>
141 && common_reference_with<__detail::__cref<_Lhs>, __detail::__cref<_Rhs>>
142 &&
requires(_Lhs __lhs, _Rhs&& __rhs) {
143 { __lhs =
static_cast<_Rhs&&
>(__rhs) } -> same_as<_Lhs>;
147 template<
typename _Tp>
148 concept destructible = __detail::__destructible<_Tp>;
151 template<
typename _Tp,
typename... _Args>
152 concept constructible_from
153 = destructible<_Tp> && is_constructible_v<_Tp, _Args...>;
156 template<
typename _Tp>
157 concept default_initializable = constructible_from<_Tp>
165 template<
typename _Tp>
166 concept move_constructible
167 = constructible_from<_Tp, _Tp> && convertible_to<_Tp, _Tp>;
170 template<
typename _Tp>
171 concept copy_constructible
172 = move_constructible<_Tp>
173 && constructible_from<_Tp, _Tp&> && convertible_to<_Tp&, _Tp>
174 && constructible_from<_Tp, const _Tp&> && convertible_to<const _Tp&, _Tp>
175 && constructible_from<_Tp, const _Tp> && convertible_to<const _Tp, _Tp>;
184 template<
typename _Tp>
void swap(_Tp&, _Tp&) =
delete;
186 template<
typename _Tp,
typename _Up>
188 = (__detail::__class_or_enum<remove_reference_t<_Tp>>
189 || __detail::__class_or_enum<remove_reference_t<_Up>>)
190 &&
requires(_Tp&& __t, _Up&& __u) {
191 swap(
static_cast<_Tp&&
>(__t),
static_cast<_Up&&
>(__u));
197 template<
typename _Tp,
typename _Up>
198 static constexpr bool
201 if constexpr (__adl_swap<_Tp, _Up>)
202 return noexcept(swap(std::declval<_Tp>(), std::declval<_Up>()));
204 return is_nothrow_move_constructible_v<remove_reference_t<_Tp>>
205 && is_nothrow_move_assignable_v<remove_reference_t<_Tp>>;
209 template<
typename _Tp,
typename _Up>
210 requires __adl_swap<_Tp, _Up>
211 || (same_as<_Tp, _Up> && is_lvalue_reference_v<_Tp>
212 && move_constructible<remove_reference_t<_Tp>>
213 && assignable_from<_Tp, remove_reference_t<_Tp>>)
215 operator()(_Tp&& __t, _Up&& __u)
const
216 noexcept(_S_noexcept<_Tp, _Up>())
218 if constexpr (__adl_swap<_Tp, _Up>)
219 swap(
static_cast<_Tp&&
>(__t),
static_cast<_Up&&
>(__u));
222 auto __tmp =
static_cast<remove_reference_t<_Tp>&&
>(__t);
223 __t =
static_cast<remove_reference_t<_Tp>&&
>(__u);
224 __u =
static_cast<remove_reference_t<_Tp>&&
>(__tmp);
228 template<
typename _Tp,
typename _Up,
size_t _Num>
229 requires requires(
const _Swap& __swap, _Tp& __e1, _Up& __e2) {
233 operator()(_Tp (&__e1)[_Num], _Up (&__e2)[_Num])
const
234 noexcept(
noexcept(std::declval<const _Swap&>()(*__e1, *__e2)))
236 for (
size_t __n = 0; __n < _Num; ++__n)
237 (*
this)(__e1[__n], __e2[__n]);
243 inline namespace _Cpo {
244 inline constexpr __swap::_Swap swap{};
248 template<
typename _Tp>
250 =
requires(_Tp& __a, _Tp& __b) { ranges::swap(__a, __b); };
252 template<
typename _Tp,
typename _Up>
253 concept swappable_with = common_reference_with<_Tp, _Up>
254 &&
requires(_Tp&& __t, _Up&& __u) {
255 ranges::swap(
static_cast<_Tp&&
>(__t),
static_cast<_Tp&&
>(__t));
256 ranges::swap(
static_cast<_Up&&
>(__u),
static_cast<_Up&&
>(__u));
257 ranges::swap(
static_cast<_Tp&&
>(__t),
static_cast<_Up&&
>(__u));
258 ranges::swap(
static_cast<_Up&&
>(__u),
static_cast<_Tp&&
>(__t));
263 template<
typename _Tp>
264 concept movable = is_object_v<_Tp> && move_constructible<_Tp>
265 && assignable_from<_Tp&, _Tp> && swappable<_Tp>;
267 template<
typename _Tp>
268 concept copyable = copy_constructible<_Tp> && movable<_Tp>
269 && assignable_from<_Tp&, _Tp&> && assignable_from<_Tp&, const _Tp&>
270 && assignable_from<_Tp&, const _Tp>;
272 template<
typename _Tp>
273 concept semiregular = copyable<_Tp> && default_initializable<_Tp>;
280 template<
typename _Tp>
281 concept __boolean_testable_impl = convertible_to<_Tp, bool>;
283 template<
typename _Tp>
284 concept __boolean_testable
285 = __boolean_testable_impl<_Tp>
286 &&
requires(_Tp&& __t)
287 { { !
static_cast<_Tp&&
>(__t) } -> __boolean_testable_impl; };
294 template<
typename _Tp,
typename _Up>
295 concept __weakly_eq_cmp_with
296 =
requires(__detail::__cref<_Tp> __t, __detail::__cref<_Up> __u) {
297 { __t == __u } -> __boolean_testable;
298 { __t != __u } -> __boolean_testable;
299 { __u == __t } -> __boolean_testable;
300 { __u != __t } -> __boolean_testable;
304 template<
typename _Tp>
305 concept equality_comparable = __detail::__weakly_eq_cmp_with<_Tp, _Tp>;
307 template<
typename _Tp,
typename _Up>
308 concept equality_comparable_with
309 = equality_comparable<_Tp> && equality_comparable<_Up>
310 && common_reference_with<__detail::__cref<_Tp>, __detail::__cref<_Up>>
311 && equality_comparable<common_reference_t<__detail::__cref<_Tp>,
312 __detail::__cref<_Up>>>
313 && __detail::__weakly_eq_cmp_with<_Tp, _Up>;
317 template<
typename _Tp,
typename _Up>
318 concept __partially_ordered_with
319 =
requires(
const remove_reference_t<_Tp>& __t,
320 const remove_reference_t<_Up>& __u) {
321 { __t < __u } -> __boolean_testable;
322 { __t > __u } -> __boolean_testable;
323 { __t <= __u } -> __boolean_testable;
324 { __t >= __u } -> __boolean_testable;
325 { __u < __t } -> __boolean_testable;
326 { __u > __t } -> __boolean_testable;
327 { __u <= __t } -> __boolean_testable;
328 { __u >= __t } -> __boolean_testable;
333 template<
typename _Tp>
334 concept totally_ordered
335 = equality_comparable<_Tp>
336 && __detail::__partially_ordered_with<_Tp, _Tp>;
338 template<
typename _Tp,
typename _Up>
339 concept totally_ordered_with
340 = totally_ordered<_Tp> && totally_ordered<_Up>
341 && equality_comparable_with<_Tp, _Up>
342 && totally_ordered<common_reference_t<__detail::__cref<_Tp>,
343 __detail::__cref<_Up>>>
344 && __detail::__partially_ordered_with<_Tp, _Up>;
346 template<
typename _Tp>
347 concept regular = semiregular<_Tp> && equality_comparable<_Tp>;
352 template<
typename _Fn,
typename... _Args>
353 concept invocable = is_invocable_v<_Fn, _Args...>;
356 template<
typename _Fn,
typename... _Args>
357 concept regular_invocable = invocable<_Fn, _Args...>;
360 template<
typename _Fn,
typename... _Args>
361 concept predicate = regular_invocable<_Fn, _Args...>
362 && __detail::__boolean_testable<invoke_result_t<_Fn, _Args...>>;
365 template<
typename _Rel,
typename _Tp,
typename _Up>
367 = predicate<_Rel, _Tp, _Tp> && predicate<_Rel, _Up, _Up>
368 && predicate<_Rel, _Tp, _Up> && predicate<_Rel, _Up, _Tp>;
371 template<
typename _Rel,
typename _Tp,
typename _Up>
372 concept equivalence_relation = relation<_Rel, _Tp, _Up>;
375 template<
typename _Rel,
typename _Tp,
typename _Up>
376 concept strict_weak_order = relation<_Rel, _Tp, _Up>;
378_GLIBCXX_END_NAMESPACE_VERSION
typename common_reference< _Tp... >::type common_reference_t
ISO C++ entities toplevel namespace is std.