Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/catboost/catboost
/ Save
Method
Save
util/ysaveload.h:333–336 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
331
332
public:
333
static inline void Save(IOutputStream* rh, const TVec& v) {
334
::SaveSize(rh, v.size());
335
::SaveRange(rh, v.begin(), v.end());
336
}
337
338
static inline void Load(IInputStream* rh, TVec& v) {
339
::LoadSizeAndResize(rh, v);
Callers
nothing calls this directly
Calls
5
SaveSize
Function · 0.85
SaveRange
Function · 0.85
size
Method · 0.45
begin
Method · 0.45
end
Method · 0.45
Tested by
no test coverage detected