Serialize any object that provides a Serialize member function.
Declared in <serialize.h>
template<
typename Stream,
typename T>
requires Serializable<T, Stream>
void
Serialize(
Stream& os,
T const& a);
| Name | Description |
|---|---|
| os | The output stream. |
| a | The object to serialize. |