| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /// \file
- // Range v3 library
- //
- // Copyright Eric Niebler 2014-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_MISMATCH_HPP
- #define RANGES_V3_ALGORITHM_MISMATCH_HPP
- #include <utility>
- #include <meta/meta.hpp>
- #include <range/v3/range_fwd.hpp>
- #include <range/v3/algorithm/result_types.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/dangling.hpp>
- #include <range/v3/range/traits.hpp>
- #include <range/v3/utility/static_const.hpp>
- #include <range/v3/detail/prologue.hpp>
- namespace ranges
- {
- /// \addtogroup group-algorithms
- /// @{
- template<typename I1, typename I2>
- using mismatch_result = detail::in1_in2_result<I1, I2>;
- RANGES_FUNC_BEGIN(mismatch)
- /// \brief function template \c mismatch
- template(typename I1,
- typename S1,
- typename I2,
- typename C = equal_to,
- typename P1 = identity,
- typename P2 = identity)(
- requires input_iterator<I1> AND sentinel_for<S1, I1> AND
- input_iterator<I2> AND
- indirect_relation<C, projected<I1, P1>, projected<I2, P2>>)
- RANGES_DEPRECATED(
- "Use the variant of ranges::mismatch that takes an upper bound for "
- "both sequences")
- mismatch_result<I1, I2> RANGES_FUNC(mismatch)(I1 begin1,
- S1 end1,
- I2 begin2,
- C pred = C{},
- P1 proj1 = P1{},
- P2 proj2 = P2{}) //
- {
- for(; begin1 != end1; ++begin1, ++begin2)
- if(!invoke(pred, invoke(proj1, *begin1), invoke(proj2, *begin2)))
- break;
- return {begin1, begin2};
- }
- /// \overload
- template(typename I1,
- typename S1,
- typename I2,
- typename S2,
- typename C = equal_to,
- typename P1 = identity,
- typename P2 = identity)(
- requires input_iterator<I1> AND sentinel_for<S1, I1> AND
- input_iterator<I2> AND sentinel_for<S2, I2> AND
- indirect_relation<C, projected<I1, P1>, projected<I2, P2>>)
- constexpr mismatch_result<I1, I2> RANGES_FUNC(mismatch)(I1 begin1,
- S1 end1,
- I2 begin2,
- S2 end2,
- C pred = C{},
- P1 proj1 = P1{},
- P2 proj2 = P2{}) //
- {
- for(; begin1 != end1 && begin2 != end2; ++begin1, ++begin2)
- if(!invoke(pred, invoke(proj1, *begin1), invoke(proj2, *begin2)))
- break;
- return {begin1, begin2};
- }
- /// \overload
- template(typename Rng1,
- typename I2Ref,
- typename C = equal_to,
- typename P1 = identity,
- typename P2 = identity)( //s
- requires input_range<Rng1> AND input_iterator<uncvref_t<I2Ref>> AND
- indirect_relation<C,
- projected<iterator_t<Rng1>, P1>,
- projected<uncvref_t<I2Ref>, P2>>)
- RANGES_DEPRECATED(
- "Use the variant of ranges::mismatch that takes an upper bound for "
- "both sequences")
- mismatch_result<borrowed_iterator_t<Rng1>, uncvref_t<I2Ref>>
- RANGES_FUNC(mismatch)(Rng1 && rng1,
- I2Ref && begin2,
- C pred = C{}, // see below [*]
- P1 proj1 = P1{},
- P2 proj2 = P2{}) //
- {
- RANGES_DIAGNOSTIC_PUSH
- RANGES_DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS
- return (*this)(begin(rng1),
- end(rng1),
- static_cast<uncvref_t<I2Ref> &&>(begin2),
- std::move(pred),
- std::move(proj1),
- std::move(proj2));
- RANGES_DIAGNOSTIC_POP
- }
- /// \overload
- template(typename Rng1,
- typename Rng2,
- typename C = equal_to,
- typename P1 = identity,
- typename P2 = identity)(
- requires input_range<Rng1> AND input_range<Rng2> AND
- indirect_relation<C,
- projected<iterator_t<Rng1>, P1>,
- projected<iterator_t<Rng2>, P2>>)
- constexpr mismatch_result<borrowed_iterator_t<Rng1>, borrowed_iterator_t<Rng2>> //
- RANGES_FUNC(mismatch)(Rng1 && rng1,
- Rng2 && rng2,
- C pred = C{},
- P1 proj1 = P1{},
- P2 proj2 = P2{}) //
- {
- return (*this)(begin(rng1),
- end(rng1),
- begin(rng2),
- end(rng2),
- std::move(pred),
- std::move(proj1),
- std::move(proj2));
- }
- RANGES_FUNC_END(mismatch)
- namespace cpp20
- {
- using ranges::mismatch;
- using ranges::mismatch_result;
- } // namespace cpp20
- // [*] In this case, the 'begin2' iterator is taken by universal reference. Why? So
- // that we can properly distinguish this case:
- // int x[] = {1,2,3,4};
- // int y[] = {1,2,3,4};
- // mismatch(x, y);
- // Had 'begin2' been taken by value as is customary, this call could match as either
- // two ranges, or a range and an iterator, where the iterator is the array, decayed
- // to a pointer. Yuk!
- /// @}
- } // namespace ranges
- #include <range/v3/detail/epilogue.hpp>
- #endif
|