/// \file // Range v3 library // // Copyright Eric Niebler 2014-present // // Use, modification and distribution is subject to the // Boost Software License, Version 0.0. (See accompanying // file LICENSE_0_0.txt or copy at // http://www.boost.org/LICENSE_0_0.txt) // // Project home: https://github.com/ericniebler/range-v3 // #ifndef RANGES_V3_ALGORITHM_EQUAL_HPP #define RANGES_V3_ALGORITHM_EQUAL_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-algorithms /// @{ /// \cond namespace detail { template constexpr bool equal_nocheck(I0 begin0, S0 end0, I1 begin1, S1 end1, C pred, P0 proj0, P1 proj1) { for(; begin0 != end0 && begin1 != end1; ++begin0, ++begin1) if(!invoke(pred, invoke(proj0, *begin0), invoke(proj1, *begin1))) return false; return begin0 == end0 && begin1 == end1; } } // namespace detail /// \endcond RANGES_BEGIN_NIEBLOID(equal) /// \brief function template \c equal template RANGES_DEPRECATED( "Use the variant of ranges::equal that takes an upper bound for " "both sequences") constexpr auto RANGES_FUN_NIEBLOID(equal)(I0 begin0, S0 end0, I1 begin1, C pred = C{}, P0 proj0 = P0{}, P1 proj1 = P1{}) // ->CPP_ret(bool)( // requires input_iterator && sentinel_for && input_iterator && indirectly_comparable) { for(; begin0 != end0; ++begin0, ++begin1) if(!invoke(pred, invoke(proj0, *begin0), invoke(proj1, *begin1))) return false; return true; } /// \overload template constexpr auto RANGES_FUN_NIEBLOID(equal)(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 && indirectly_comparable) { if(RANGES_CONSTEXPR_IF(sized_sentinel_for && sized_sentinel_for)) if(distance(begin0, end0) != distance(begin1, end1)) return false; return detail::equal_nocheck(std::move(begin0), std::move(end0), std::move(begin1), std::move(end1), std::move(pred), std::move(proj0), std::move(proj1)); } /// \overload template RANGES_DEPRECATED( "Use the variant of ranges::equal that takes an upper bound for " "both sequences") constexpr auto RANGES_FUN_NIEBLOID(equal)(Rng0 && rng0, I1Ref && begin1, C pred = C{}, P0 proj0 = P0{}, P1 proj1 = P1{}) // ->CPP_ret(bool)( // requires input_range && input_iterator> && indirectly_comparable, uncvref_t, C, P0, P1>) { RANGES_DIAGNOSTIC_PUSH RANGES_DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS return (*this)(begin(rng0), end(rng0), (I1Ref &&) begin1, std::move(pred), std::move(proj0), std::move(proj1)); RANGES_DIAGNOSTIC_POP } /// \overload template constexpr auto RANGES_FUN_NIEBLOID(equal)( Rng0 && rng0, Rng1 && rng1, C pred = C{}, P0 proj0 = P0{}, P1 proj1 = P1{}) // ->CPP_ret(bool)( // requires input_range && input_range && indirectly_comparable, iterator_t, C, P0, P1>) { if(RANGES_CONSTEXPR_IF(sized_range && sized_range)) if(distance(rng0) != distance(rng1)) return false; return detail::equal_nocheck(begin(rng0), end(rng0), begin(rng1), end(rng1), std::move(pred), std::move(proj0), std::move(proj1)); } RANGES_END_NIEBLOID(equal) namespace cpp20 { using ranges::equal; } /// @} } // namespace ranges #endif // include guard