bplus_store 0.2.0

Copy-on-write B+ tree with page-aligned storage, split/merge, and crash-safety primitives.
Documentation
1
2
3
4
5
6
7
8
9
pub mod iterator;
pub mod node;
pub mod node_view;
pub mod transaction;
pub mod tree;

pub(crate) use node::Node;
pub(crate) use node::NodeId;
pub(crate) use node_view::NodeView;