| 415 | } |
| 416 | |
| 417 | void SplitStringUsing(const string& full, |
| 418 | const char* delim, |
| 419 | vector<string>* result) { |
| 420 | result->reserve(result->size() + CalculateReserveForVector(full, delim)); |
| 421 | std::back_insert_iterator< vector<string> > it(*result); |
| 422 | SplitStringToIteratorUsing(full, delim, it); |
| 423 | } |
| 424 | |
| 425 | void SplitStringToHashsetUsing(const string& full, const char* delim, |
| 426 | unordered_set<string>* result) { |
no test coverage detected