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ยง
- IntVec
Builder - A builder for creating an
IntVecfrom a slice of integers. - IntVec
From Iter Builder - A builder for creating an
IntVecfrom an iterator.