Range-v3
Range algorithms, views, and actions for the Standard Library
ranges::views::remove_if_base_fn Struct Reference

Given a source range, unary predicate, and optional projection, present a view of the elements that do not satisfy the predicate. More...

#include <range/v3/view/remove_if.hpp>

+ Inheritance diagram for ranges::views::remove_if_base_fn:

Public Member Functions

template<typename Rng , typename Pred >
requires viewable_range<Rng> && input_range<Rng> && indirect_unary_predicate<Pred, iterator_t<Rng>>
constexpr remove_if_view< all_t< Rng >, Pred > operator() (Rng &&rng, Pred pred) const
 
template<typename Rng , typename Pred , typename Proj >
requires viewable_range<Rng> && input_range<Rng> && indirect_unary_predicate<Pred, projected<iterator_t<Rng>, Proj>>
constexpr remove_if_view< all_t< Rng >, composed< Pred, Proj > > operator() (Rng &&rng, Pred pred, Proj proj) const
 

Detailed Description

Given a source range, unary predicate, and optional projection, present a view of the elements that do not satisfy the predicate.