| 176 | } |
| 177 | |
| 178 | String::SizeType String::FindFirstOf(const char *s, String::SizeType pos) const |
| 179 | { |
| 180 | return m_Data.find_first_of(s, pos); |
| 181 | } |
| 182 | |
| 183 | String::SizeType String::FindFirstOf(char ch, String::SizeType pos) const |
| 184 | { |
no outgoing calls
no test coverage detected