| 292 | |
| 293 | template <class Cont, class Sink> |
| 294 | void WriteVarUintArray(Cont const & v, Sink & sink) |
| 295 | { |
| 296 | for (auto e : v) |
| 297 | WriteVarUint(sink, e); |
| 298 | } |
| 299 | |
| 300 | /// @name Special functions to read/write varint array when each value stores a control bit "has next". |
| 301 | /// Useful for short (>90% have 1 value) arrays. |
no test coverage detected