| 550 | class TSetSerializerBase { |
| 551 | public: |
| 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); |