Module union_vectors

Source
Expand description

Types for interacting with vectors of unions in serialized data

Structsยง

Chunks
An iterator over a UnionVector in (non-overlapping) chunks (chunk_size elements at a time), starting at the beginning of the UnionVector.
ChunksExact
An iterator over a UnionVector 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 UnionVector.
RChunks
An iterator over a UnionVector in (non-overlapping) chunks (chunk_size elements at a time), starting at the end of the UnionVector.
RChunksExact
An iterator over a UnionVector in (non-overlapping) chunks (chunk_size elements at a time), starting at the end of the slice.
UnionVector
A slice-like view of a union vector into a serialized flatbuffer that deserializes on demand.
Windows
An iterator over overlapping sub-vectors of length size.