Given a source range, unary predicate, and optional projection, present a view of the elements that do not satisfy the predicate.
|
template<typename Rng , typename Pred > |
constexpr auto | operator() (Rng &&rng, Pred pred) const -> remove_if_view< all_t< Rng >, Pred > requires ViewableRange< Rng > &&InputRange< Rng > &&IndirectUnaryPredicate< Pred, iterator_t< Rng >> |
|
template<typename Rng , typename Pred , typename Proj > |
constexpr auto | operator() (Rng &&rng, Pred pred, Proj proj) const -> remove_if_view< all_t< Rng >, composed< Pred, Proj >> requires ViewableRange< Rng > &&InputRange< Rng > &&IndirectUnaryPredicate< Pred, projected< iterator_t< Rng >, Proj >> |
|