| 438 | } |
| 439 | |
| 440 | void SplitStringToHashmapUsing(const string& full, const char* delim, |
| 441 | unordered_map<string, string>* result) { |
| 442 | AppendTo(result, strings::Split(full, AnyOf(delim), strings::SkipEmpty())); |
| 443 | } |
| 444 | |
| 445 | // ---------------------------------------------------------------------- |
| 446 | // SplitStringPieceToVector() |