MCPcopy Create free account
hub / github.com/catboost/catboost / Split

Function Split

library/cpp/deprecated/split/split_iterator.h:312–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310
311template <typename TSplit>
312void Split(const TSplit& split, TSplitTokens* words) {
313 words->clear();
314 TSplitIterator<TSplit> it(split);
315 while (!it.Eof())
316 words->push_back(it.NextString());
317}

Callers 6

TestDelimitersSplitMethod · 0.70
ParseHttpVersionMethod · 0.50
CreateAddressFunction · 0.50
FillArrayMethod · 0.50

Calls 3

clearMethod · 0.45
EofMethod · 0.45
push_backMethod · 0.45

Tested by 2

TestDelimitersSplitMethod · 0.56