| 1317 | } |
| 1318 | |
| 1319 | size_type find_last_of(const basic_string& str, size_type pos = npos) const noexcept |
| 1320 | { |
| 1321 | return find_last_of(str.c_str(), pos, str.size()); |
| 1322 | } |
| 1323 | |
| 1324 | size_type find_last_of(const value_type* str, size_type pos, size_type len) const noexcept |
| 1325 | { |