[#Serialize-086] = Serialize :mrdocs: Serialize any object that provides a Serialize member function. == Synopsis Declared in `<serialize.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Stream, typename T> requires Serializable<T, Stream> void Serialize( Stream& os, T const& a); ---- == Parameters [cols="1,4"] |=== | Name| Description | *os* | The output stream. | *a* | The object to serialize. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#