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

Name

Description

is

The input stream.

m

The set to fill.

Created with MrDocs