1
2
3
4
5
6
7
8
9
10
11
12
//! Implementation of Dictionary encoding.
//!
//! Expose a [DictArray] which is zero-copy equivalent to Arrow's
//! [DictionaryArray](https://docs.rs/arrow/latest/arrow/array/struct.DictionaryArray.html).
pub use compress::*;
pub use dict::*;

mod compress;
mod compute;
mod dict;
mod stats;
mod variants;