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

Method Save

util/ysaveload.h:552–555  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

550class TSetSerializerBase {
551public:
552 static inline void Save(IOutputStream* rh, const TSetType& s) {
553 ::SaveSize(rh, s.size());
554 ::SaveRange(rh, s.begin(), s.end());
555 }
556
557 static inline void Load(IInputStream* rh, TSetType& s) {
558 const size_t cnt = ::LoadSize(rh);

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