[Example 1: constexprauto source =" \t \t \t hello there"sv;
auto is_invisible =[](constauto x){return x ==' '|| x =='\t'; };
auto skip_ws = views::drop_while(source, is_invisible);
for(auto c : skip_ws){
cout << c; // prints hello there with no leading space} — end example]