[#UnserializeFromVector] = UnserializeFromVector :mrdocs: Unserialize a length‐prefixed vector of objects from a stream. == Synopsis Declared in `<psbt.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Stream, typename... X> void UnserializeFromVector( Stream& s, X&&... args); ---- == Description The objects are read in the order provided, and the stated vector length is validated against the number of bytes consumed. == Parameters [cols="1,4"] |=== | Name| Description | *s* | The input stream. | *args* | The objects to populate, in serialized order. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#