[src]

Module extra::btree

Starting implementation of a btree for rust. Structure inspired by github user davidhalperin's gist.

Structs

BTree

A B-tree contains a root node (which contains a vector of elements), a length (the height of the tree), and lower and upper bounds on the number of elements that a given node can contain.