// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
//! Dictionary encoding schemes for binary, integer, float, and string arrays.
pub use BinaryDictScheme;
pub use FloatDictScheme;
pub use dictionary_encode as float_dictionary_encode;
pub use IntDictScheme;
pub use dictionary_encode as integer_dictionary_encode;
pub use StringDictScheme;