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::BoolArrayExt;
8pub use array::BoolData;
9pub use array::BoolDataParts;
10
11pub(crate) mod compute;
12
13mod vtable;
14pub use compute::rules::BoolMaskedValidityRule;
15pub use vtable::Bool;
16pub use vtable::BoolArray;
17
18#[cfg(feature = "_test-harness")]
19mod test_harness;