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

Synopsis of methods

constexpr drop_while_fn drop_while {}
 

Public Member Functions

template<typename Fun >
CPP_TEMPLATE_AUX_0 c (requires `(!range< Fun >)) ccconstexpr auto operator()(Fun fun) const
 
template<typename Rng , typename Fun >
CPP_TEMPLATE_AUX_0 R (requires ` forward_range< Rng > &&indirect_unary_predicate< Fun, iterator_t< Rng >> &&erasable_range< Rng &, iterator_t< Rng >, iterator_t< Rng >>) RRRng operator()(Rng &&rng
 
return static_cast (rng)
 

Public Attributes

CPP_TEMPLATE_AUX_0 Fun fun const
 

Member Data Documentation

◆ const

CPP_TEMPLATE_AUX_0 Fun fun ranges::actions::drop_while_fn::const
Initial value:
{
ranges::actions::erase(
rng, begin(rng), find_if_not(begin(rng), end(rng), std::move(fun)))
constexpr _begin_::fn begin
Definition: access.hpp:187
constexpr _end_::fn end
Definition: access.hpp:332
constexpr move_fn move
Definition: move.hpp:52