| 1244 | } |
| 1245 | |
| 1246 | size_type rfind(const basic_string& str, size_type pos = npos) const noexcept |
| 1247 | { |
| 1248 | return rfind(str.c_str(), pos, str.size()); |
| 1249 | } |
| 1250 | |
| 1251 | size_type rfind(const value_type* str, size_type pos, size_type len) const noexcept |
| 1252 | { |