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

Name

Description

s

The output stream.

args

The objects to serialize, in order.

Created with MrDocs