Files
specification/protocol/p2p/vector.md
T
AndrewStone f1fb956302 wiki commit
2020-11-04 13:23:02 -05:00

470 B

Vectors (and arrays, lists, maps, etc) are serialized by first serializing the number of elements and then serializing each element. The number of elements is serialized in compact int format.

vector element count object #0 object #1 ... object #count-1
compact int object specific serialization ... ... ...