| 1131 | // SplitStringAndParse() -- see description above |
| 1132 | template <class T> |
| 1133 | bool SplitStringAndParse(StringPiece source, StringPiece delim, |
| 1134 | bool (*parse)(const string& str, T* value), |
| 1135 | vector<T>* result) { |
| 1136 | return SplitStringAndParseToList(source, delim, parse, result); |
| 1137 | } |
| 1138 | |
| 1139 | namespace strings { |
| 1140 | namespace internal { |
nothing calls this directly
no test coverage detected