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

Function SaveIterRange

util/ysaveload.h:92–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90
91template <class It>
92static inline void SaveIterRange(IOutputStream* rh, It b, It e) {
93 while (b != e) {
94 ::Save(rh, *b++);
95 }
96}
97
98template <class It>
99static inline void LoadIterRange(IInputStream* rh, It b, It e) {

Callers 2

SaveArrayMethod · 0.85
SaveMethod · 0.85

Calls 1

SaveFunction · 0.70

Tested by

no test coverage detected