| 3035 | } |
| 3036 | |
| 3037 | String String::remove_chars(const String &p_chars) const { |
| 3038 | return _remove_chars_common(*this, p_chars.ptr(), p_chars.length()); |
| 3039 | } |
| 3040 | |
| 3041 | String String::remove_chars(const char *p_chars) const { |
| 3042 | return _remove_chars_common(*this, p_chars, strlen(p_chars)); |
no test coverage detected