Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/catboost/catboost
/ DoRead
Method
DoRead
util/stream/aligned.cpp:3–7 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
#include
"aligned.h"
2
3
size_t TAlignedInput::DoRead(void* ptr, size_t len) {
4
size_t ret = Stream_->Read(ptr, len);
5
Position_ += ret;
6
return ret;
7
}
8
9
size_t TAlignedInput::DoSkip(size_t len) {
10
size_t ret = Stream_->Skip(len);
Callers
nothing calls this directly
Calls
1
Read
Method · 0.45
Tested by
no test coverage detected