1//! This module defines the [`BTree`] data structure and its related types.
2#![allow(clippy::explicit_deref_methods)]
34mod node_layout;
5mod node_ptr;
67mod config;
8pub use config::*;
910mod the_tree;
11pub use the_tree::*;
1213pub mod inspect;
1415mod operations;