Serialize a map as a CompactSize count followed by its entries.

Synopsis

Declared in <serialize.h>

template<
    typename Stream,
    typename K,
    typename T,
    typename Pred,
    typename A>
void
Serialize(
    Stream& os,
    std::map<K, T, Pred, A> const& m);

Parameters

Name

Description

os

The output stream.

m

The map to serialize.

Created with MrDocs