Skip to main content

arrs/lance/
mod.rs

1//! Lance-format adapter for the `Dataset` trait.
2//!
3//! Everything Lance-specific lives here so the rest of the crate can be
4//! extended with new input formats without touching commands or output code.
5
6mod adapter;
7
8pub use adapter::{LanceDataset, write_dataset};