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;
11#[cfg(feature = "arrow")]
12mod arrow;
13pub mod builders;
14mod compute;
15mod display;
16mod ops;
17mod serde;
18#[cfg(feature = "test-harness")]
19pub mod test;