MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / SerializeMany

Function SerializeMany

src/serialize.h:1047–1050  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1045
1046template <typename Stream, typename... Args>
1047void SerializeMany(Stream& s, const Args&... args)
1048{
1049 (::Serialize(s, args), ...);
1050}
1051
1052template <typename Stream, typename... Args>
1053inline void UnserializeMany(Stream& s, Args&&... args)

Callers 5

SerReadWriteManyMethod · 0.85
SerializeToVectorFunction · 0.85
VectorWriterMethod · 0.85
SpanWriterMethod · 0.85
PrefixStreamFunction · 0.85

Calls 1

SerializeFunction · 0.70

Tested by

no test coverage detected