Crate btreelist

Crate btreelist 

Source
Expand description

A tree-based list with heap-allocated contents.

A BTreeList offers O(log(n)) indexing, O(log(n)) insertion (anywhere in the list) and O(log(n)) removal (also anywhere in the list).

See BTreeList for more details.

Macros§

btreelist
Create a BTreeList.

Structs§

BTreeList
A list with efficient insert and removal in the middle.
Iter
An iterator over items in a BTreeList.
OwnedIter
An iterator over items in a BTreeList.