vortex-layout 0.68.0

Vortex layouts provide a way to perform lazy push-down scans over abstract storage
Documentation
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

pub mod layouts;

pub use children::*;
pub use encoding::*;
pub use flatbuffers::*;
pub use layout::*;
pub use reader::*;
pub use strategy::*;
use vortex_session::registry::Context;
pub use vtable::*;
pub mod aliases;
mod children;
pub mod display;
mod encoding;
mod flatbuffers;
mod layout;
mod reader;
pub mod scan;
pub mod segments;
pub mod sequence;
pub mod session;
mod strategy;
#[cfg(test)]
mod test;
pub mod vtable;

pub type LayoutContext = Context<LayoutEncodingRef>;