| 206 | } |
| 207 | |
| 208 | String String::SubStr(String::SizeType first, String::SizeType len) const |
| 209 | { |
| 210 | return m_Data.substr(first, len); |
| 211 | } |
| 212 | |
| 213 | std::vector<String> String::Split(const char *separators) const |
| 214 | { |
no outgoing calls
no test coverage detected