std::ranges::views::drop_while, std::ranges::drop_while_view
From cppreference.com
| template< ranges::view V, class Pred > requires ranges::input_range<V> && |
(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.
Contents |
[edit] 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.
[edit] 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) |
[edit] Deduction guides
[edit] Example
Run this code
#include <cctype> #include <iomanip> #include <iostream> #include <ranges> #include <string> #include <string_view> std::string trim(std::string_view const in) { auto view = in | std::views::drop_while(isspace) | std::views::reverse | std::views::drop_while(isspace) | std::views::reverse ; return {view.begin(), view.end()}; } int main() { const auto s = trim(" \f\n\t\r\vHello, C++20!\f\n\t\r\v "); std::cout << std::quoted(s) << '\n'; static constexpr auto v = {0, 1, 2, 3, 4, 5}; for (int n : v | std::views::drop_while([](int i) { return i < 3; })) { std::cout << n << ' '; } }
Output:
"Hello, C++20!" 3 4 5

