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

Function GetNext

util/string/split.h:430–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

428
429template <class P, class D>
430void GetNext(TStringBuf& s, D delim, P& param) {
431 TStringBuf next = s.NextTok(delim);
432 Y_ENSURE(next.IsInited(), TStringBuf("Split: number of fields less than number of Split output arguments"));
433 param = FromString<P>(next);
434}
435
436template <class P, class D>
437void GetNext(TStringBuf& s, D delim, TMaybe<P>& param) {

Callers 2

FirstLineParserMethod · 0.85
SplitFunction · 0.85

Calls 3

IsInitedMethod · 0.80
NextTokMethod · 0.45
ClearMethod · 0.45

Tested by

no test coverage detected