vecdb 0.11.1

High-performance mutable persistent vectors built on rawdb
Documentation
1
2
3
4
5
6
7
8
9
//! Numeric traits (overflow-safe arithmetic) shared across the crate.

mod binary_transform;
mod checked_sub;
mod saturating_add;

pub use binary_transform::*;
pub use checked_sub::*;
pub use saturating_add::*;