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

Structs

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