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 canonical;
15mod compute;
16mod display;
17mod ops;
18mod serde;
19#[cfg(feature = "test-harness")]
20pub mod test;