| 315 | return rfind(c, pos); |
| 316 | } |
| 317 | size_type find_first_not_of(const AbstractString& str, size_type pos = 0) const |
| 318 | { |
| 319 | return find_first_not_of(str.c_str(), pos, str.length()); |
| 320 | } |
| 321 | size_type find_first_not_of(const_pointer s, size_type pos, size_type n) const; |
| 322 | size_type find_first_not_of(const_pointer s, size_type pos = 0) const |
| 323 | { |
nothing calls this directly
no test coverage detected