Module vectors

Source
Expand description

Types for interacting with vectors in serialized data

Structsยง

Chunks
An iterator over a Vector in (non-overlapping) chunks (chunk_size elements at a time), starting at the beginning of the Vector.
ChunksExact
An iterator over a Vector in (non-overlapping) chunks (chunk_size elements at a time), starting at the beginning of the slice.
Iter
An iterator over the elements of a Vector.
RChunks
An iterator over a Vector in (non-overlapping) chunks (chunk_size elements at a time), starting at the end of the Vector.
RChunksExact
An iterator over a Vector in (non-overlapping) chunks (chunk_size elements at a time), starting at the end of the slice.
Vector
A slice-like view into a serialized flatbuffer that deserializes on demand.
Windows
An iterator over overlapping sub-vectors of length size.