Daily bit(e) of C++ | std::views::drop, std::views::drop_while
Daily bit(e) of C++ #171, The C++20 views for omitting leading elements: std::views::drop, std::views::drop_while.
The C++20 std::views::drop and std::views::drop_while are views that omit leading elements of the underlying range.
std::views::drop will omit the specified number of leading elements. std::views::drop_while will omit the leading elements that satisfy the provided predicate.