| 186 | } |
| 187 | |
| 188 | String::SizeType String::FindFirstNotOf(const char *s, String::SizeType pos) const |
| 189 | { |
| 190 | return m_Data.find_first_not_of(s, pos); |
| 191 | } |
| 192 | |
| 193 | String::SizeType String::FindFirstNotOf(char ch, String::SizeType pos) const |
| 194 | { |
no outgoing calls
no test coverage detected