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

Method Read

library/cpp/binsaver/buffered_io.h:19–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 }
18
19 inline i64 Read(void* userBuffer, i64 size) {
20 if (size <= Max<int>()) {
21 return ReadImpl(userBuffer, static_cast<int>(size));
22 } else {
23 return LongRead(userBuffer, size);
24 }
25 }
26
27 virtual bool IsValid() const = 0;
28 virtual bool IsFailed() const = 0;

Callers 5

ReadImplMethod · 0.45
ReadComplexMethod · 0.45
DataChunkStrMethod · 0.45
DataChunkMethod · 0.45
AddMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected