init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
175
Telegram/ThirdParty/range-v3/include/range/v3/algorithm/mismatch.hpp
vendored
Normal file
175
Telegram/ThirdParty/range-v3/include/range/v3/algorithm/mismatch.hpp
vendored
Normal file
@@ -0,0 +1,175 @@
|
||||
/// \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
|
||||
Reference in New Issue
Block a user