| 734 | |
| 735 | template <class S, class... Ts> |
| 736 | static inline void LoadMany(S* s, Ts&... t) { |
| 737 | ApplyToMany([&](auto& v) { Load(s, v); }, t...); |
| 738 | } |
| 739 | |
| 740 | #define Y_SAVELOAD_DEFINE(...) \ |
| 741 | inline void Save(IOutputStream* s) const { \ |
no test coverage detected