| 311 | size_type find_first_not_of(CharT ch, size_type pos) const noexcept; |
| 312 | |
| 313 | size_type find_first_not_of(basic_string_view str, size_type pos = 0) const noexcept |
| 314 | { |
| 315 | return find_first_not_of(str.data(), pos, str.length()); |
| 316 | } |
| 317 | |
| 318 | size_type find_first_not_of(const CharT* str, size_type pos = 0) const noexcept |
| 319 | { |