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

Method ReadChar

util/stream/input.h:55–57  ·  view source on GitHub ↗

* Reads one character from the stream. * * @param[out] c Character to read. * @returns Whether the character was read. * A return value of false signals the end * of stream. */

Source from the content-addressed store, hash-verified

53 * of stream.
54 */
55 inline bool ReadChar(char& c) {
56 return DoRead(&c, 1) > 0;
57 }
58
59 /**
60 * Reads all characters from the stream until the given character is

Callers 7

ParseInt64FromYsonStringFunction · 0.80
ReadUpToDelimiterFunction · 0.80
Y_UNIT_TESTFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected