[#SerializeToVector] = SerializeToVector :mrdocs: Serialize arguments as a length‐prefixed vector into a stream. == Synopsis Declared in `<psbt.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Stream, typename... X> void SerializeToVector( Stream& s, X const&... args); ---- == Description The arguments are serialized as if first written into a vector and then into the stream: the output is the total serialized length of all objects followed by the concatenated objects. == Parameters [cols="1,4"] |=== | Name| Description | *s* | The output stream. | *args* | The objects to serialize. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#