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

Method Read

library/cpp/http/io/stream.cpp:163–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161 }
162
163 inline size_t Read(void* buf, size_t len) {
164 return Perform(len, [this, buf](size_t toRead) { return Input_->Read(buf, toRead); });
165 }
166
167 inline size_t Skip(size_t len) {
168 return Perform(len, [this](size_t toSkip) { return Input_->Skip(toSkip); });

Callers 3

PerformMethod · 0.45
DoReadMethod · 0.45
ReadInSmallChunksFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected