| 433 | } |
| 434 | |
| 435 | void SplitStringToMapUsing(const string& full, const char* delim, |
| 436 | map<string, string>* result) { |
| 437 | AppendTo(result, strings::Split(full, AnyOf(delim), strings::SkipEmpty())); |
| 438 | } |
| 439 | |
| 440 | void SplitStringToHashmapUsing(const string& full, const char* delim, |
| 441 | unordered_map<string, string>* result) { |