vortex-array 0.62.0

Vortex in memory columnar data format
Documentation
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

mod array;
pub use array::PrimitiveArray;
pub use array::PrimitiveArrayParts;
pub use array::chunk_range;
pub use array::patch_chunk;

pub(crate) mod compute;
pub use compute::IS_CONST_LANE_WIDTH;
pub use compute::compute_is_constant;

mod vtable;
pub use compute::rules::PrimitiveMaskedValidityRule;
pub use vtable::PrimitiveVTable;

mod native_value;
pub use native_value::NativeValue;

#[cfg(test)]
mod tests;