Horizon
|
Given a source range, unary predicate, and optional projection, present a view of the elements that do not satisfy the predicate. More...
#include <remove_if.hpp>
Public Member Functions | |
template (typename Rng, typename Pred)(requires viewable_range< Rng > AND input_range< Rng > AND indirect_unary_predicate< Pred | |
constexpr iterator_t< Rng > remove_if_view< all_t< Rng >, Pred > | operator() (Rng &&rng, Pred pred) const |
template (typename Rng, typename Pred, typename Proj)(requires viewable_range< Rng > AND input_range< Rng > AND indirect_unary_predicate< Pred | |
constexpr projected< iterator_t< Rng >, Proj > remove_if_view< all_t< Rng >, composed< Pred, Proj > > | operator() (Rng &&rng, Pred pred, Proj proj) const |
Given a source range, unary predicate, and optional projection, present a view of the elements that do not satisfy the predicate.