|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /// \file
- // Range v3 library
- //
- // Copyright Eric Niebler 2013-present
- // Copyright Casey Carter 2016
- //
- // Use, modification and distribution is subject to the
- // Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- //
- // Project home: https://github.com/ericniebler/range-v3
- //
- #ifndef RANGES_V3_FUNCTIONAL_COMPARISONS_HPP
- #define RANGES_V3_FUNCTIONAL_COMPARISONS_HPP
-
- #include <concepts/concepts.hpp>
-
- #include <range/v3/range_fwd.hpp>
-
- namespace ranges
- {
- /// \addtogroup group-functional
- /// @{
- struct equal_to
- {
- template<typename T, typename U>
- constexpr auto operator()(T && t, U && u) const -> CPP_ret(bool)( //
- requires equality_comparable_with<T, U>)
- {
- return (T &&) t == (U &&) u;
- }
- using is_transparent = void;
- };
-
- struct not_equal_to
- {
- template<typename T, typename U>
- constexpr auto operator()(T && t, U && u) const -> CPP_ret(bool)( //
- requires equality_comparable_with<T, U>)
- {
- return !equal_to{}((T &&) t, (U &&) u);
- }
- using is_transparent = void;
- };
-
- struct less
- {
- template<typename T, typename U>
- constexpr auto operator()(T && t, U && u) const -> CPP_ret(bool)( //
- requires totally_ordered_with<T, U>)
- {
- return (T &&) t < (U &&) u;
- }
- using is_transparent = void;
- };
-
- struct less_equal
- {
- template<typename T, typename U>
- constexpr auto operator()(T && t, U && u) const -> CPP_ret(bool)( //
- requires totally_ordered_with<T, U>)
- {
- return !less{}((U &&) u, (T &&) t);
- }
- using is_transparent = void;
- };
-
- struct greater_equal
- {
- template<typename T, typename U>
- constexpr auto operator()(T && t, U && u) const -> CPP_ret(bool)( //
- requires totally_ordered_with<T, U>)
- {
- return !less{}((T &&) t, (U &&) u);
- }
- using is_transparent = void;
- };
-
- struct greater
- {
- template<typename T, typename U>
- constexpr auto operator()(T && t, U && u) const -> CPP_ret(bool)( //
- requires totally_ordered_with<T, U>)
- {
- return less{}((U &&) u, (T &&) t);
- }
- using is_transparent = void;
- };
-
- using ordered_less RANGES_DEPRECATED(
- "Repace uses of ranges::ordered_less with ranges::less") = less;
-
- namespace cpp20
- {
- using ranges::equal_to;
- using ranges::greater;
- using ranges::greater_equal;
- using ranges::less;
- using ranges::less_equal;
- using ranges::not_equal_to;
- } // namespace cpp20
- /// @}
- } // namespace ranges
-
- #endif
|