Public Member Functions | |
template<typename I , typename S , typename F , typename P = ident, requires = (InputIterator<I>() && Sentinel<S, I>() && IndirectPredicate<F, projected<I, P> >())> | |
I | operator() (I begin, S end, F pred, P proj=P{}) const |
template function find_if_not_fn::operator() More... | |
template<typename Rng , typename F , typename P = ident, typename I = iterator_t<Rng>, requires = (InputRange<Rng>() && IndirectPredicate<F, projected<I, P> >())> | |
safe_iterator_t< Rng > | operator() (Rng &&rng, F pred, P proj=P{}) const |
I ranges::v3::find_if_not_fn::operator() | ( | I | begin, |
S | end, | ||
F | pred, | ||
P | proj = P{} |
||
) | const |
template function find_if_not_fn::operator()
range-based version of the find_if_not
std algorithm
Rng
is a model of the Range
concept I
is a model of the InputIterator
concept S
is a model of the Sentinel<I>
concept P
is a model of the Invocable<V>
concept, where V
is the value type of I. F
models Predicate<X>
, where X
is the result type of Invocable<P, V>
References ranges::v3::begin, and ranges::v3::end.
safe_iterator_t<Rng> ranges::v3::find_if_not_fn::operator() | ( | Rng && | rng, |
F | pred, | ||
P | proj = P{} |
||
) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
References ranges::v3::begin, ranges::v3::end, and ranges::v3::move.