Module vector

Source
Expand description

A vector implemented on a trie. Unlike standard vector does not support insertion and removal of an element results in the last element being placed in the empty position.

Structsยง

Iter
An iterator over each element deserialized in the Vector.
RawIter
An iterator over raw serialized bytes of each element in the Vector.
Vector
An iterable implementation of vector that stores its content on the trie. Uses the following map: index -> element.