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.
Compiler Explorer link: https://compiler-explorer.com/z/ozqhKcM7j