| 302 | return find(c, pos); |
| 303 | } |
| 304 | size_type find_last_of(const AbstractString& str, size_type pos = npos) const |
| 305 | { |
| 306 | return find_last_of(str.c_str(), pos, str.length()); |
| 307 | } |
| 308 | size_type find_last_of(const_pointer s, const size_type pos, size_type n = npos) const; |
| 309 | size_type find_last_of(const_pointer s, size_type pos = npos) const |
| 310 | { |
nothing calls this directly
no test coverage detected