Skip to main content

vortex_array/arrays/bool/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod array;
5mod patch;
6
7pub use array::BoolArray;
8pub use array::BoolArrayParts;
9
10pub(crate) mod compute;
11
12mod vtable;
13pub use compute::rules::BoolMaskedValidityRule;
14pub use vtable::BoolVTable;
15
16#[cfg(feature = "_test-harness")]
17mod test_harness;