MCPcopy Create free account
hub / github.com/apache/impala / SplitStringAndParseToList

Function SplitStringAndParseToList

be/src/gutil/strings/split.h:1194–1200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1192// SplitStringAndParseToList() -- see description above
1193template <class List>
1194bool SplitStringAndParseToList(
1195 StringPiece source, StringPiece delim,
1196 bool (*parse)(const string& str, typename List::value_type* value),
1197 List* result) {
1198 return strings::internal::SplitStringAndParseToInserter(
1199 source, delim, parse, result, strings::internal::BackInsertPolicy());
1200}
1201
1202// END DOXYGEN SplitFunctions grouping
1203/* @} */

Callers 1

SplitStringAndParseFunction · 0.85

Calls 2

BackInsertPolicyClass · 0.85

Tested by

no test coverage detected