lance-encoding 10.0.0

Encoders and decoders for the Lance file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The Lance Authors

//! Encoding and decoding mechanisms described by [`crate::format::pb::ArrayEncoding`].
//!
//! File versions decide which mechanisms to compose and accept. This module
//! contains only the reusable implementation of that persisted grammar.

pub mod logical;
pub mod physical;
mod strategy;

pub use strategy::ArrayFieldEncodingStrategy;