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>;
67 template<
typename _Tp,
typename _Up>
68 concept __different_from
69 = !same_as<remove_cvref_t<_Tp>, remove_cvref_t<_Up>>;
73 template<
typename _Derived,
typename _Base>
74 concept derived_from = __is_base_of(_Base, _Derived)
75 && is_convertible_v<const volatile _Derived*, const volatile _Base*>;
78 template<
typename _From,
typename _To>
79 concept convertible_to = is_convertible_v<_From, _To>
80 &&
requires {
static_cast<_To
>(std::declval<_From>()); };
83 template<
typename _Tp,
typename _Up>
84 concept common_reference_with
85 = same_as<common_reference_t<_Tp, _Up>, common_reference_t<_Up, _Tp>>
86 && convertible_to<_Tp, common_reference_t<_Tp, _Up>>
87 && convertible_to<_Up, common_reference_t<_Tp, _Up>>;
90 template<
typename _Tp,
typename _Up>
92 = same_as<common_type_t<_Tp, _Up>, common_type_t<_Up, _Tp>>
94 static_cast<common_type_t<_Tp, _Up>
>(std::declval<_Tp>());
95 static_cast<common_type_t<_Tp, _Up>
>(std::declval<_Up>());
97 && common_reference_with<add_lvalue_reference_t<const _Tp>,
98 add_lvalue_reference_t<const _Up>>
99 && common_reference_with<add_lvalue_reference_t<common_type_t<_Tp, _Up>>,
101 add_lvalue_reference_t<const _Tp>,
102 add_lvalue_reference_t<const _Up>>>;
106 template<
typename _Tp>
107 concept integral = is_integral_v<_Tp>;
109 template<
typename _Tp>
110 concept signed_integral = integral<_Tp> && is_signed_v<_Tp>;
112 template<
typename _Tp>
113 concept unsigned_integral = integral<_Tp> && !signed_integral<_Tp>;
115 template<
typename _Tp>
116 concept floating_point = is_floating_point_v<_Tp>;
120 template<
typename _Tp>
121 using __cref =
const remove_reference_t<_Tp>&;
123 template<
typename _Tp>
124 concept __class_or_enum
125 = is_class_v<_Tp> || is_union_v<_Tp> || is_enum_v<_Tp>;
127 template<
typename _Tp>
128 constexpr bool __destructible_impl =
false;
129 template<
typename _Tp>
130 requires requires(_Tp& __t) { { __t.~_Tp() }
noexcept; }
131 constexpr bool __destructible_impl<_Tp> =
true;
133 template<
typename _Tp>
134 constexpr bool __destructible = __destructible_impl<_Tp>;
135 template<
typename _Tp>
136 constexpr bool __destructible<_Tp&> =
true;
137 template<
typename _Tp>
138 constexpr bool __destructible<_Tp&&> =
true;
139 template<
typename _Tp,
size_t _Nm>
140 constexpr bool __destructible<_Tp[_Nm]> = __destructible<_Tp>;
145 template<
typename _Lhs,
typename _Rhs>
146 concept assignable_from
147 = is_lvalue_reference_v<_Lhs>
148 && common_reference_with<__detail::__cref<_Lhs>, __detail::__cref<_Rhs>>
149 &&
requires(_Lhs __lhs, _Rhs&& __rhs) {
150 { __lhs =
static_cast<_Rhs&&
>(__rhs) } -> same_as<_Lhs>;
154 template<
typename _Tp>
155 concept destructible = __detail::__destructible<_Tp>;
158 template<
typename _Tp,
typename... _Args>
159 concept constructible_from
160 = destructible<_Tp> && is_constructible_v<_Tp, _Args...>;
163 template<
typename _Tp>
164 concept default_initializable = constructible_from<_Tp>
172 template<
typename _Tp>
173 concept move_constructible
174 = constructible_from<_Tp, _Tp> && convertible_to<_Tp, _Tp>;
177 template<
typename _Tp>
178 concept copy_constructible
179 = move_constructible<_Tp>
180 && constructible_from<_Tp, _Tp&> && convertible_to<_Tp&, _Tp>
181 && constructible_from<_Tp, const _Tp&> && convertible_to<const _Tp&, _Tp>
182 && constructible_from<_Tp, const _Tp> && convertible_to<const _Tp, _Tp>;
191 template<
typename _Tp>
void swap(_Tp&, _Tp&) =
delete;
193 template<
typename _Tp,
typename _Up>
195 = (std::__detail::__class_or_enum<remove_reference_t<_Tp>>
196 || std::__detail::__class_or_enum<remove_reference_t<_Up>>)
197 &&
requires(_Tp&& __t, _Up&& __u) {
198 swap(
static_cast<_Tp&&
>(__t),
static_cast<_Up&&
>(__u));
204 template<
typename _Tp,
typename _Up>
205 static constexpr bool
208 if constexpr (__adl_swap<_Tp, _Up>)
209 return noexcept(swap(std::declval<_Tp>(), std::declval<_Up>()));
211 return is_nothrow_move_constructible_v<remove_reference_t<_Tp>>
212 && is_nothrow_move_assignable_v<remove_reference_t<_Tp>>;
216 template<
typename _Tp,
typename _Up>
217 requires __adl_swap<_Tp, _Up>
218 || (same_as<_Tp, _Up> && is_lvalue_reference_v<_Tp>
219 && move_constructible<remove_reference_t<_Tp>>
220 && assignable_from<_Tp, remove_reference_t<_Tp>>)
222 operator()(_Tp&& __t, _Up&& __u)
const
223 noexcept(_S_noexcept<_Tp, _Up>())
225 if constexpr (__adl_swap<_Tp, _Up>)
226 swap(
static_cast<_Tp&&
>(__t),
static_cast<_Up&&
>(__u));
229 auto __tmp =
static_cast<remove_reference_t<_Tp>&&
>(__t);
230 __t =
static_cast<remove_reference_t<_Tp>&&
>(__u);
231 __u =
static_cast<remove_reference_t<_Tp>&&
>(__tmp);
235 template<
typename _Tp,
typename _Up,
size_t _Num>
236 requires requires(
const _Swap& __swap, _Tp& __e1, _Up& __e2) {
240 operator()(_Tp (&__e1)[_Num], _Up (&__e2)[_Num])
const
241 noexcept(
noexcept(std::declval<const _Swap&>()(*__e1, *__e2)))
243 for (
size_t __n = 0; __n < _Num; ++__n)
244 (*
this)(__e1[__n], __e2[__n]);
250 inline namespace _Cpo {
251 inline constexpr __swap::_Swap swap{};
255 template<
typename _Tp>
257 =
requires(_Tp& __a, _Tp& __b) { ranges::swap(__a, __b); };
259 template<
typename _Tp,
typename _Up>
260 concept swappable_with = common_reference_with<_Tp, _Up>
261 &&
requires(_Tp&& __t, _Up&& __u) {
262 ranges::swap(
static_cast<_Tp&&
>(__t),
static_cast<_Tp&&
>(__t));
263 ranges::swap(
static_cast<_Up&&
>(__u),
static_cast<_Up&&
>(__u));
264 ranges::swap(
static_cast<_Tp&&
>(__t),
static_cast<_Up&&
>(__u));
265 ranges::swap(
static_cast<_Up&&
>(__u),
static_cast<_Tp&&
>(__t));
270 template<
typename _Tp>
271 concept movable = is_object_v<_Tp> && move_constructible<_Tp>
272 && assignable_from<_Tp&, _Tp> && swappable<_Tp>;
274 template<
typename _Tp>
275 concept copyable = copy_constructible<_Tp> && movable<_Tp>
276 && assignable_from<_Tp&, _Tp&> && assignable_from<_Tp&, const _Tp&>
277 && assignable_from<_Tp&, const _Tp>;
279 template<
typename _Tp>
280 concept semiregular = copyable<_Tp> && default_initializable<_Tp>;
287 template<
typename _Tp>
288 concept __boolean_testable_impl = convertible_to<_Tp, bool>;
290 template<
typename _Tp>
291 concept __boolean_testable
292 = __boolean_testable_impl<_Tp>
293 &&
requires(_Tp&& __t)
294 { { !
static_cast<_Tp&&
>(__t) } -> __boolean_testable_impl; };
301 template<
typename _Tp,
typename _Up>
302 concept __weakly_eq_cmp_with
303 =
requires(__detail::__cref<_Tp> __t, __detail::__cref<_Up> __u) {
304 { __t == __u } -> __boolean_testable;
305 { __t != __u } -> __boolean_testable;
306 { __u == __t } -> __boolean_testable;
307 { __u != __t } -> __boolean_testable;
311 template<
typename _Tp>
312 concept equality_comparable = __detail::__weakly_eq_cmp_with<_Tp, _Tp>;
314 template<
typename _Tp,
typename _Up>
315 concept equality_comparable_with
316 = equality_comparable<_Tp> && equality_comparable<_Up>
317 && common_reference_with<__detail::__cref<_Tp>, __detail::__cref<_Up>>
318 && equality_comparable<common_reference_t<__detail::__cref<_Tp>,
319 __detail::__cref<_Up>>>
320 && __detail::__weakly_eq_cmp_with<_Tp, _Up>;
324 template<
typename _Tp,
typename _Up>
325 concept __partially_ordered_with
326 =
requires(
const remove_reference_t<_Tp>& __t,
327 const remove_reference_t<_Up>& __u) {
328 { __t < __u } -> __boolean_testable;
329 { __t > __u } -> __boolean_testable;
330 { __t <= __u } -> __boolean_testable;
331 { __t >= __u } -> __boolean_testable;
332 { __u < __t } -> __boolean_testable;
333 { __u > __t } -> __boolean_testable;
334 { __u <= __t } -> __boolean_testable;
335 { __u >= __t } -> __boolean_testable;
340 template<
typename _Tp>
341 concept totally_ordered
342 = equality_comparable<_Tp>
343 && __detail::__partially_ordered_with<_Tp, _Tp>;
345 template<
typename _Tp,
typename _Up>
346 concept totally_ordered_with
347 = totally_ordered<_Tp> && totally_ordered<_Up>
348 && equality_comparable_with<_Tp, _Up>
349 && totally_ordered<common_reference_t<__detail::__cref<_Tp>,
350 __detail::__cref<_Up>>>
351 && __detail::__partially_ordered_with<_Tp, _Up>;
353 template<
typename _Tp>
354 concept regular = semiregular<_Tp> && equality_comparable<_Tp>;
359 template<
typename _Fn,
typename... _Args>
360 concept invocable = is_invocable_v<_Fn, _Args...>;
363 template<
typename _Fn,
typename... _Args>
364 concept regular_invocable = invocable<_Fn, _Args...>;
367 template<
typename _Fn,
typename... _Args>
368 concept predicate = regular_invocable<_Fn, _Args...>
369 && __detail::__boolean_testable<invoke_result_t<_Fn, _Args...>>;
372 template<
typename _Rel,
typename _Tp,
typename _Up>
374 = predicate<_Rel, _Tp, _Tp> && predicate<_Rel, _Up, _Up>
375 && predicate<_Rel, _Tp, _Up> && predicate<_Rel, _Up, _Tp>;
378 template<
typename _Rel,
typename _Tp,
typename _Up>
379 concept equivalence_relation = relation<_Rel, _Tp, _Up>;
382 template<
typename _Rel,
typename _Tp,
typename _Up>
383 concept strict_weak_order = relation<_Rel, _Tp, _Up>;
385_GLIBCXX_END_NAMESPACE_VERSION
typename common_reference< _Tp... >::type common_reference_t
ISO C++ entities toplevel namespace is std.