vortex_fastlanes/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4#![allow(clippy::cast_possible_truncation)]
5
6pub use bitpacking::*;
7pub use delta::*;
8pub use r#for::*;
9pub use rle::*;
10
11mod bitpacking;
12mod delta;
13mod r#for;
14mod rle;
15
16pub(crate) const FL_CHUNK_SIZE: usize = 1024;