Unserialize a length‐prefixed vector of objects from a stream.
Synopsis
Declared in <psbt.h>
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
Name |
Description |
s |
The input stream. |
args |
The objects to populate, in serialized order. |
Created with MrDocs