Module builder

Source
Expand description

Builders for constructing an IntVec.

This module provides the two primary builders for creating an IntVec:

  • IntVecBuilder: For building from an existing slice of data. This is the most flexible builder, as it can analyze the data to automatically select an optimal compression codec.
  • IntVecFromIterBuilder: For building from an iterator. This is suitable for large datasets that are generated on the fly, but it requires the compression codec to be specified manually.

Structsยง

IntVecBuilder
A builder for creating an IntVec from a slice of integers.
IntVecFromIterBuilder
A builder for creating an IntVec from an iterator.