vortex_array/arrays/primitive/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod array;
5pub use array::PrimitiveArray;
6pub use array::PrimitiveArrayParts;
7pub use array::chunk_range;
8pub use array::patch_chunk;
9
10pub(crate) mod compute;
11pub use compute::IS_CONST_LANE_WIDTH;
12pub use compute::compute_is_constant;
13
14mod vtable;
15pub use compute::rules::PrimitiveMaskedValidityRule;
16pub use vtable::PrimitiveVTable;
17
18mod native_value;
19pub use native_value::NativeValue;
20
21#[cfg(test)]
22mod tests;