| 136 | // The resulting output into the stream has the total serialized length of all of the objects followed by all objects concatenated with each other. |
| 137 | template<typename Stream, typename... X> |
| 138 | void SerializeToVector(Stream& s, const X&... args) |
| 139 | { |
| 140 | WriteCompactSize(s, GetSerializeSizeMany(s, args...)); |
| 141 | SerializeMany(s, args...); |
| 142 | } |
| 143 | |
| 144 | // Takes a stream and multiple arguments and unserializes them first as a vector then each object individually in the order provided in the arguments |
| 145 | template<typename Stream, typename... X> |
no test coverage detected