Crate brie_tree

Source
Expand description

This crate provides BTree, a fast B+ Tree implementation using integer keys.

Re-exports§

pub use nonmax;

Structs§

BTree
An ordered map based on a B+ Tree.
Cursor
A cursor over the elements of a BTree.
CursorMut
A mutable cursor over the elements of a BTree which allows editing operations.
IntoIter
An owning iterator over the entries of a BTree.
Iter
An iterator over the entries of a BTree.
IterMut
A mutable iterator over the entries of a BTree.
Keys
An iterator over the keys of a BTree.
Range
An iterator over a sub-range of the entries of a BTree.
RangeMut
A mutable iterator over a sub-range of the entries of a BTree.
Values
An iterator over the values of a BTree.
ValuesMut
A mutable iterator over the values of a BTree.

Traits§

BTreeKey
Trait which must be implemented for all keys inserted into a BTree.