VectorFormatter::Ser

Serialize a vector-like container, writing its size then each element via the formatter.

Synopsis

Declared in <serialize.h>

template<
    typename Stream,
    typename V>
void
Ser(
    Stream& s,
    V const& v);

Parameters

NameDescription
sThe output stream.
vThe container to serialize.