Range-v3
Range algorithms, views, and actions for the Standard Library
ranges::views::remove_base_fn Struct Reference
+ Inheritance diagram for ranges::views::remove_base_fn:

Public Member Functions

template<typename Rng , typename Value >
constexpr auto operator() (Rng &&rng, Value value) const requires move_constructible< Value > &&viewable_range< Rng > &&input_range< Rng > &&indirectly_comparable< iterator_t< Rng >
 
template<typename Rng , typename Value , typename Proj >
constexpr auto operator() (Rng &&rng, Value value, Proj proj) const requires move_constructible< Value > &&viewable_range< Rng > &&input_range< Rng > &&indirectly_comparable< iterator_t< Rng >
 

Public Attributes

constexpr auto const Value equal_to
 
constexpr auto const Value Proj
 

Member Data Documentation

◆ equal_to

constexpr auto const Value ranges::views::remove_base_fn::equal_to
Initial value:
{
return remove_if(static_cast<Rng &&>(rng),
pred_<Value>{std::move(value)})

◆ Proj

constexpr auto const Value ranges::views::remove_base_fn::Proj
Initial value:
{
return remove_if(static_cast<Rng &&>(rng),
pred_<Value>{std::move(value)},
std::move(proj))
ranges::remove_if
auto remove_if(I first, S last, C pred, P proj=P{}) -> I requires permutable< I > &&sentinel_for< S, I > &&indirect_unary_predicate< C, projected< I, P >>
function template remove_if
Definition: remove_if.hpp:42
ranges::aux::move
constexpr move_fn move
Definition: move.hpp:52