nimrodshn-btree 0.1.0

A persistent copy-on-write B+Tree implementation, designed as an index for a key-value store, inspired by SQLite.
Documentation
1
2
3
4
5
6
7
8
pub mod btree;
pub mod error;
pub mod node;
pub mod node_type;
pub mod page;
mod page_layout;
mod pager;
mod wal;