| 97 | |
| 98 | template <class It> |
| 99 | static inline void LoadIterRange(IInputStream* rh, It b, It e) { |
| 100 | while (b != e) { |
| 101 | ::Load(rh, *b++); |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | template <class It, class TStorage> |
| 106 | static inline void LoadIterRange(IInputStream* rh, It b, It e, TStorage& pool) { |