| 249 | size_type find(const CharT ch, size_type pos) const noexcept; |
| 250 | |
| 251 | size_type find(basic_string_view sv, size_type pos = 0) const noexcept |
| 252 | { |
| 253 | return find(sv.data(), pos, sv.length()); |
| 254 | } |
| 255 | |
| 256 | size_type find(const CharT* str, size_type pos = 0) const noexcept |
| 257 | { |