| 310 | } |
| 311 | |
| 312 | bool BString::contains(const BString& s, bool ignoreCase) const { |
| 313 | return contains(s.data->str, ignoreCase); |
| 314 | } |
| 315 | |
| 316 | bool BString::contains(const char* s, bool ignoreCase) const { |
| 317 | if (isEmpty()) { |
no outgoing calls
no test coverage detected