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

Function IsStdDelimiter

util/stream/input.cpp:261–263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

259// helper functions
260
261static inline bool IsStdDelimiter(char c) {
262 return (c == '\0') || (c == ' ') || (c == '\r') || (c == '\n') || (c == '\t');
263}
264
265static void ReadUpToDelimiter(IInputStream& i, TString& s) {
266 char c;

Callers 1

ReadUpToDelimiterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected