Range-v3
Range algorithms, views, and actions for the Standard Library
find_if_not.hpp File Reference

Functions

template<typename I , typename S , typename F , typename P = identity>
auto ranges::find_if_not (I first, S last, F pred, P proj=P{}) -> I requires input_iterator< I > &&sentinel_for< S, I > &&indirect_unary_predicate< F, projected< I, P >>
 template function find_if_not More...
 
template<typename Rng , typename F , typename P = identity>
auto ranges::find_if_not (Rng &&rng, F pred, P proj=P{}) -> safe_iterator_t< Rng > requires input_range< Rng > &&indirect_unary_predicate< F, projected< iterator_t< Rng >, P >>