| 263 | size_type rfind(const CharT ch, size_type pos) const noexcept; |
| 264 | |
| 265 | size_type rfind(basic_string_view sv, size_type pos = 0) const noexcept |
| 266 | { |
| 267 | return rfind(sv.data(), pos, sv.length()); |
| 268 | } |
| 269 | |
| 270 | size_type rfind(const CharT* str, size_type pos = 0) const noexcept |
| 271 | { |