Unserialize

Unserialize a set written as a CompactSize count followed by its elements.

Synopsis

Declared in <serialize.h>

template<
    typename Stream,
    typename K,
    typename Pred,
    typename A>
void
Unserialize(
    Stream& is,
    std::set<K, Pred, A>& m);

Parameters

NameDescription
isThe input stream.
mThe set to fill.