| 428 | } |
| 429 | |
| 430 | void SplitStringToSetUsing(const string& full, const char* delim, |
| 431 | set<string>* result) { |
| 432 | AppendTo(result, strings::Split(full, AnyOf(delim), strings::SkipEmpty())); |
| 433 | } |
| 434 | |
| 435 | void SplitStringToMapUsing(const string& full, const char* delim, |
| 436 | map<string, string>* result) { |