| 289 | size_type rfind(const_pointer s, const size_type pos = npos) const; |
| 290 | size_type rfind(char_type c, const size_type pos = npos) const; |
| 291 | size_type find_first_of(const AbstractString& str, size_type pos = 0) const |
| 292 | { |
| 293 | return find_first_of(str.c_str(), pos, str.length()); |
| 294 | } |
| 295 | size_type find_first_of(const_pointer s, size_type pos, size_type n) const; |
| 296 | size_type find_first_of(const_pointer s, size_type pos = 0) const |
| 297 | { |
no test coverage detected