Skip to main content

tinyquant_io/compressed_vector/
mod.rs

1//! `CompressedVector` binary serialization.
2//!
3//! Implements the Level-1 wire format defined in
4//! `docs/design/rust/serialization-format.md`.
5
6mod from_bytes;
7pub(crate) mod header;
8pub(crate) mod pack;
9mod to_bytes;
10pub(crate) mod unpack;
11
12pub use from_bytes::from_bytes;
13pub use header::HEADER_SIZE;
14pub use to_bytes::to_bytes;