std::ranges::views::drop_while, std::ranges::drop_while_view

From cppreference.com
< cpp‎ | ranges
 
 
 
 
template< ranges::view V, class Pred >

    requires ranges::input_range<V> &&
             std::is_object_v<Pred> &&
             std::indirect_unary_predicate<const Pred, ranges::iterator_t<V>>

class drop_while_view : public ranges::view_interface<drop_while_view<V, Pred>>
(1) (since C++20)
namespace views {

    inline constexpr /*unspecified*/ drop_while = /*unspecified*/;

}
(2) (since C++20)
1) A range adaptor that represents view of elements from an underlying sequence, beginning at the first element for which the predicate returns false.
2) The expression views::drop_while(E, F) is expression-equivalent to drop_while_view{E, F} for any suitable subexpressions E and F.

drop_while_view models the concepts contiguous_range, random_access_range, bidirectional_range, forward_range, input_range, and common_range when the underlying view V models respective concepts.

Expression-equivalent

Expression e is expression-equivalent to expression f, if e and f have the same effects, either are both potentially-throwing or are both not potentially-throwing (i.e. noexcept(e) == noexcept(f)), and either are both constant subexpressions or are both not constant subexpressions.

Member functions

constructs a drop_while_view
(public member function)
returns a copy of the underlying (adapted) view
(public member function)
returns a reference to the stored predicate
(public member function)
returns an iterator to the beginning
(public member function)
returns an iterator or a sentinel to the end
(public member function)

Deduction guides

Example

#include <ranges>
#include <vector>
#include <iostream>
 
int main()
{
    std::vector<int> v{0,1,2,3,4,5};
    for(int n : v | std::views::drop_while([](int i){return i<3;})) {
        std::cout << n << ' ';
    }
}

Output:

3 4 5