| 344 | |
| 345 | template <typename Container, typename WriteFunction> |
| 346 | void DataStream::writeMapContainer(Container& map, WriteFunction function) { |
| 347 | writeVlqU(map.size()); |
| 348 | for (auto const& elem : map) |
| 349 | function(*this, elem.first, elem.second); |
| 350 | } |
| 351 | |
| 352 | template <typename Container, typename ReadFunction> |
| 353 | void DataStream::readMapContainer(Container& map, ReadFunction function) { |
no test coverage detected