1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___COMPARE_THREE_WAY_COMPARABLE_H
10 #define _LIBCPP___COMPARE_THREE_WAY_COMPARABLE_H
12 #include <__compare/common_comparison_category.h>
13 #include <__compare/ordering.h>
14 #include <__concepts/common_reference_with.h>
15 #include <__concepts/equality_comparable.h>
16 #include <__concepts/same_as.h>
17 #include <__concepts/totally_ordered.h>
19 #include <type_traits>
21 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
22 #pragma GCC system_header
25 _LIBCPP_BEGIN_NAMESPACE_STD
27 #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS)
29 template<class _Tp
, class _Cat
>
30 concept __compares_as
=
31 same_as
<common_comparison_category_t
<_Tp
, _Cat
>, _Cat
>;
33 template<class _Tp
, class _Cat
= partial_ordering
>
34 concept three_way_comparable
=
35 __weakly_equality_comparable_with
<_Tp
, _Tp
> &&
36 __partially_ordered_with
<_Tp
, _Tp
> &&
37 requires(__make_const_lvalue_ref
<_Tp
> __a
, __make_const_lvalue_ref
<_Tp
> __b
) {
38 { __a
<=> __b
} -> __compares_as
<_Cat
>;
41 template<class _Tp
, class _Up
, class _Cat
= partial_ordering
>
42 concept three_way_comparable_with
=
43 three_way_comparable
<_Tp
, _Cat
> &&
44 three_way_comparable
<_Up
, _Cat
> &&
45 common_reference_with
<__make_const_lvalue_ref
<_Tp
>, __make_const_lvalue_ref
<_Up
>> &&
46 three_way_comparable
<common_reference_t
<__make_const_lvalue_ref
<_Tp
>, __make_const_lvalue_ref
<_Up
>>, _Cat
> &&
47 __weakly_equality_comparable_with
<_Tp
, _Up
> &&
48 __partially_ordered_with
<_Tp
, _Up
> &&
49 requires(__make_const_lvalue_ref
<_Tp
> __t
, __make_const_lvalue_ref
<_Up
> __u
) {
50 { __t
<=> __u
} -> __compares_as
<_Cat
>;
51 { __u
<=> __t
} -> __compares_as
<_Cat
>;
54 #endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS)
56 _LIBCPP_END_NAMESPACE_STD
58 #endif // _LIBCPP___COMPARE_THREE_WAY_COMPARABLE_H