cobt 0.1.1

A Cache-Oblivious B-Tree implementation in Rust
Documentation
1
2
3
4
5
6
7
8
//! Cache-Oblivious B-Tree Implementation
//!
//! A B-Tree variant that adapts to cache sizes automatically without
//! explicit knowledge of cache parameters.

mod cobt;

pub use cobt::CacheObliviousBTree;