|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /// \file
- // Range v3 library
- //
- // Copyright Eric Niebler 2013-present
- //
- // 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_ALGORITHM_LEXICOGRAPHICAL_COMPARE_HPP
- #define RANGES_V3_ALGORITHM_LEXICOGRAPHICAL_COMPARE_HPP
-
- #include <range/v3/range_fwd.hpp>
-
- #include <range/v3/functional/comparisons.hpp>
- #include <range/v3/functional/identity.hpp>
- #include <range/v3/functional/invoke.hpp>
- #include <range/v3/iterator/concepts.hpp>
- #include <range/v3/iterator/traits.hpp>
- #include <range/v3/range/access.hpp>
- #include <range/v3/range/concepts.hpp>
- #include <range/v3/range/traits.hpp>
- #include <range/v3/utility/static_const.hpp>
-
- namespace ranges
- {
- /// \addtogroup group-algorithms
- /// @{
- RANGES_BEGIN_NIEBLOID(lexicographical_compare)
-
- /// \brief function template \c lexicographical_compare
- template<typename I0,
- typename S0,
- typename I1,
- typename S1,
- typename C = less,
- typename P0 = identity,
- typename P1 = identity>
- auto RANGES_FUN_NIEBLOID(lexicographical_compare)(I0 begin0,
- S0 end0,
- I1 begin1,
- S1 end1,
- C pred = C{},
- P0 proj0 = P0{},
- P1 proj1 = P1{})
- ->CPP_ret(bool)( //
- requires input_iterator<I0> && sentinel_for<S0, I0> &&
- input_iterator<I1> && sentinel_for<S1, I1> &&
- indirect_strict_weak_order<C, projected<I0, P0>, projected<I1, P1>>)
- {
- for(; begin1 != end1; ++begin0, ++begin1)
- {
- if(begin0 == end0 ||
- invoke(pred, invoke(proj0, *begin0), invoke(proj1, *begin1)))
- return true;
- if(invoke(pred, invoke(proj1, *begin1), invoke(proj0, *begin0)))
- return false;
- }
- return false;
- }
-
- /// \overload
- template<typename Rng0,
- typename Rng1,
- typename C = less,
- typename P0 = identity,
- typename P1 = identity>
- auto RANGES_FUN_NIEBLOID(lexicographical_compare)(
- Rng0 && rng0, Rng1 && rng1, C pred = C{}, P0 proj0 = P0{}, P1 proj1 = P1{}) //
- ->CPP_ret(bool)( //
- requires input_range<Rng0> && input_range<Rng1> &&
- indirect_strict_weak_order<C,
- projected<iterator_t<Rng0>, P0>,
- projected<iterator_t<Rng1>, P1>>)
- {
- return (*this)(begin(rng0),
- end(rng0),
- begin(rng1),
- end(rng1),
- std::move(pred),
- std::move(proj0),
- std::move(proj1));
- }
-
- RANGES_END_NIEBLOID(lexicographical_compare)
-
- namespace cpp20
- {
- using ranges::lexicographical_compare;
- }
- /// @}
- } // namespace ranges
-
- #endif // include guard
|