vortex_dict/lib.rs
1//! Implementation of Dictionary encoding.
2//!
3//! Expose a [DictArray] which is zero-copy equivalent to Arrow's
4//! [DictionaryArray](https://docs.rs/arrow/latest/arrow/array/struct.DictionaryArray.html).
5pub use array::*;
6
7mod array;
8pub mod builders;
9mod compute;
10mod serde;
11mod stats;
12#[cfg(feature = "test-harness")]
13pub mod test;
14mod variants;