| 423 | } |
| 424 | |
| 425 | void SplitStringToHashsetUsing(const string& full, const char* delim, |
| 426 | unordered_set<string>* result) { |
| 427 | AppendTo(result, strings::Split(full, AnyOf(delim), strings::SkipEmpty())); |
| 428 | } |
| 429 | |
| 430 | void SplitStringToSetUsing(const string& full, const char* delim, |
| 431 | set<string>* result) { |