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