automerge/automerge/src/columnar.rs
Alex Good 9ac8827219
Remove storage-v2 feature flag
Signed-off-by: Alex Good <alex@memoryandthought.me>
2022-08-22 21:21:21 +01:00

14 lines
591 B
Rust

//! Types for reading data which is stored in a columnar storage format
//!
//! The details of how values are encoded in `encoding`, which exposes a set of "decoder" and
//! "encoder" types.
//!
//! The `column_range` module exposes a set of types - most of which are newtypes over
//! `Range<usize>` - which have useful instance methods such as `encode()` to create a new range and
//! `decoder()` to return an iterator of the correct type.
pub(crate) mod column_range;
pub(crate) use column_range::Key;
pub(crate) mod encoding;
mod splice_error;
pub(crate) use splice_error::SpliceError;