MCPcopy 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
332public:
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

SaveSizeFunction · 0.85
SaveRangeFunction · 0.85
sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected