| 401 | } |
| 402 | |
| 403 | bool String::hasCharOrWhitespace(Char c) const { |
| 404 | if (empty()) |
| 405 | return isSpace(c); |
| 406 | else |
| 407 | return hasChar(c); |
| 408 | } |
| 409 | |
| 410 | String String::replace(String const& rplc, String const& val, CaseSensitivity cs) const { |
| 411 | size_t index; |
no outgoing calls
no test coverage detected