vortex_dict/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! Implementation of Dictionary encoding.
5//!
6//! Expose a [DictArray] which is zero-copy equivalent to Arrow's
7//! [DictionaryArray](https://docs.rs/arrow/latest/arrow/array/struct.DictionaryArray.html).
8pub use array::*;
9
10mod array;
11pub mod builders;
12mod compute;
13mod display;
14mod ops;
15mod serde;
16#[cfg(feature = "test-harness")]
17pub mod test;