/// \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 #include #include #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-algorithms /// @{ RANGES_BEGIN_NIEBLOID(lexicographical_compare) /// \brief function template \c lexicographical_compare template 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 && sentinel_for && input_iterator && sentinel_for && indirect_strict_weak_order, projected>) { 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 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 && input_range && indirect_strict_weak_order, P0>, projected, 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