MCPcopy Create free account
hub / github.com/aksnzhy/xlearn / SplitStringToSetUsing

Function SplitStringToSetUsing

src/base/split_string.cc:59–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59void SplitStringToSetUsing(const std::string& full,
60 const char* delim,
61 std::set<std::string>* result) {
62 CHECK(delim != NULL);
63 CHECK(result != NULL);
64 simple_insert_iterator<std::set<std::string> > it(result);
65 SplitStringToIteratorUsing(full, delim, it);
66}

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected