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