SerializeMany

Serialize several objects in sequence to the same stream.

Synopsis

Declared in <serialize.h>

template<
    typename Stream,
    typename... Args>
void
SerializeMany(
    Stream& s,
    Args const&... args);

Parameters

NameDescription
sThe output stream.
argsThe objects to serialize, in order.