|
-
-
-
-
-
-
-
-
-
-
-
-
- #ifndef RANGES_V3_ALGORITHM_ADJACENT_FIND_HPP
- #define RANGES_V3_ALGORITHM_ADJACENT_FIND_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/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>
-
- namespace ranges
- {
-
-
- RANGES_BEGIN_NIEBLOID(adjacent_find)
-
-
-
-
-
-
- template<typename I, typename S, typename C = equal_to, typename P = identity>
- auto RANGES_FUN_NIEBLOID(adjacent_find)(
- I first, S last, C pred = C{}, P proj = P{})
- ->CPP_ret(I)(
- requires forward_iterator<I> && sentinel_for<S, I> &&
- indirect_relation<C, projected<I, P>>)
- {
- if(first == last)
- return first;
- auto inext = first;
- for(; ++inext != last; first = inext)
- if(invoke(pred, invoke(proj, *first), invoke(proj, *inext)))
- return first;
- return inext;
- }
-
-
- template<typename Rng, typename C = equal_to, typename P = identity>
- auto RANGES_FUN_NIEBLOID(adjacent_find)(Rng && rng, C pred = C{}, P proj = P{})
- ->CPP_ret(safe_iterator_t<Rng>)(
- requires forward_range<Rng> &&
- indirect_relation<C, projected<iterator_t<Rng>, P>>)
- {
- return (*this)(begin(rng), end(rng), std::move(pred), std::move(proj));
- }
- RANGES_END_NIEBLOID(adjacent_find)
-
- namespace cpp20
- {
- using ranges::adjacent_find;
- }
-
- }
-
- #endif
|