Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
261
static inline bool IsStdDelimiter(char c) {
262
return (c ==
'\0'
) || (c ==
' '
) || (c ==
'\r'
) || (c ==
'\n'
) || (c ==
'\t'
);
263
}
264
265
static void ReadUpToDelimiter(IInputStream& i, TString& s) {
266
char c;
Callers
1
ReadUpToDelimiter
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected