vortex_runend/
lib.rs

1pub use array::*;
2
3mod array;
4pub mod compress;
5mod compute;
6mod iter;
7mod serde;
8
9#[doc(hidden)]
10pub mod _benchmarking {
11    pub use compute::filter::filter_run_end;
12    pub use compute::take::take_indices_unchecked;
13
14    use super::*;
15}