| 1285 | } |
| 1286 | |
| 1287 | size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept |
| 1288 | { |
| 1289 | return find_first_of(str.c_str(), pos, str.size()); |
| 1290 | } |
| 1291 | |
| 1292 | size_type find_first_of(const value_type* str, size_type pos, size_type len) const noexcept |
| 1293 | { |