three_way_comparable.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //===----------------------------------------------------------------------===//
  2. //
  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
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef _LIBCPP___COMPARE_THREE_WAY_COMPARABLE_H
  9. #define _LIBCPP___COMPARE_THREE_WAY_COMPARABLE_H
  10. #include <__compare/common_comparison_category.h>
  11. #include <__compare/ordering.h>
  12. #include <__concepts/common_reference_with.h>
  13. #include <__concepts/equality_comparable.h>
  14. #include <__concepts/same_as.h>
  15. #include <__concepts/totally_ordered.h>
  16. #include <__config>
  17. #include <__type_traits/common_reference.h>
  18. #include <__type_traits/make_const_lvalue_ref.h>
  19. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  20. # pragma GCC system_header
  21. #endif
  22. _LIBCPP_BEGIN_NAMESPACE_STD
  23. #if _LIBCPP_STD_VER >= 20
  24. template <class _Tp, class _Cat>
  25. concept __compares_as = same_as<common_comparison_category_t<_Tp, _Cat>, _Cat>;
  26. template <class _Tp, class _Cat = partial_ordering>
  27. concept three_way_comparable =
  28. __weakly_equality_comparable_with<_Tp, _Tp> && __partially_ordered_with<_Tp, _Tp> &&
  29. requires(__make_const_lvalue_ref<_Tp> __a, __make_const_lvalue_ref<_Tp> __b) {
  30. { __a <=> __b } -> __compares_as<_Cat>;
  31. };
  32. template <class _Tp, class _Up, class _Cat = partial_ordering>
  33. concept three_way_comparable_with =
  34. three_way_comparable<_Tp, _Cat> && three_way_comparable<_Up, _Cat> &&
  35. common_reference_with<__make_const_lvalue_ref<_Tp>, __make_const_lvalue_ref<_Up>> &&
  36. three_way_comparable<common_reference_t<__make_const_lvalue_ref<_Tp>, __make_const_lvalue_ref<_Up>>, _Cat> &&
  37. __weakly_equality_comparable_with<_Tp, _Up> && __partially_ordered_with<_Tp, _Up> &&
  38. requires(__make_const_lvalue_ref<_Tp> __t, __make_const_lvalue_ref<_Up> __u) {
  39. { __t <=> __u } -> __compares_as<_Cat>;
  40. { __u <=> __t } -> __compares_as<_Cat>;
  41. };
  42. #endif // _LIBCPP_STD_VER >= 20
  43. _LIBCPP_END_NAMESPACE_STD
  44. #endif // _LIBCPP___COMPARE_THREE_WAY_COMPARABLE_H