Unserialize

Unserialize a string written as a CompactSize length followed by its bytes.

Synopsis

Declared in <serialize.h>

template<
    typename Stream,
    typename C>
void
Unserialize(
    Stream& is,
    std::basic_string<C>& str);

Parameters

NameDescription
isThe input stream.
strThe string to fill.