MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / GetSerializeSizeMany

Function GetSerializeSizeMany

src/serialize.h:995–1000  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

993
994template <typename S, typename... T>
995size_t GetSerializeSizeMany(const S& s, const T&... t)
996{
997 CSizeComputer sc(s.GetType(), s.GetVersion());
998 SerializeMany(sc, t...);
999 return sc.size();
1000}
1001
1002#endif // BITCOIN_SERIALIZE_H

Callers 1

SerializeToVectorFunction · 0.85

Calls 4

SerializeManyFunction · 0.85
GetTypeMethod · 0.45
GetVersionMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected