bplus_store 0.4.0

Copy-on-write B+ tree with page-aligned storage, split/merge, and crash-safety primitives.
Documentation
//! B+ Tree library crate
#![allow(elided_lifetimes_in_paths)]

pub mod api;
pub mod codec;

#[allow(dead_code)]
pub(crate) mod bplustree;
#[allow(dead_code)]
pub(crate) mod database;
#[allow(dead_code)]
pub(crate) mod keyfmt;
#[allow(dead_code)]
pub(crate) mod layout;
#[allow(dead_code)]
pub(crate) mod page;
#[allow(dead_code)]
pub(crate) mod storage;
#[cfg(test)]
pub(crate) mod tests;