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

Function SplitStringAndParseToContainer

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

Source from the content-addressed store, hash-verified

1182// SplitStringAndParseToContainer() -- see description above
1183template <class Container>
1184bool SplitStringAndParseToContainer(
1185 StringPiece source, StringPiece delim,
1186 bool (*parse)(const string& str, typename Container::value_type* value),
1187 Container* result) {
1188 return strings::internal::SplitStringAndParseToInserter(
1189 source, delim, parse, result, strings::internal::BasicInsertPolicy());
1190}
1191
1192// SplitStringAndParseToList() -- see description above
1193template <class List>

Callers

nothing calls this directly

Calls 2

BasicInsertPolicyClass · 0.85

Tested by

no test coverage detected