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::VarBinViewArray;
pub use array::VarBinViewArrayParts;

mod accessor;
pub(crate) mod compact;

pub(crate) mod compute;

mod vtable;
pub use vtable::VarBinViewVTable;

pub mod build_views;

mod view;
pub use view::BinaryView;
pub use view::Inlined;
pub use view::Ref;

#[cfg(test)]
mod tests;