[#UnserializeMany] = UnserializeMany :mrdocs: Unserialize several objects in sequence from the same stream. == Synopsis Declared in `<serialize.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Stream, typename... Args> void UnserializeMany( Stream& s, Args&&... args); ---- == Parameters [cols="1,4"] |=== | Name| Description | *s* | The input stream. | *args* | The objects to unserialize into, in order. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#