[][src]Module avl::map

An ordered map implemented with an AVL tree.

Modules

set

An ordered set implemented with an AVL tree.

Structs

AvlTreeMap

An ordered map implemented with an AVL tree.

IntoIter

An owning iterator over the entries of a map.

Iter

An iterator over the entries of a map.

IterMut

A mutable iterator over the entries of a map.

Keys

An iterator over the keys of a map.

OccupiedEntry

A view into an occupied map entry. It is part of the Entry enum.

Range

An iterator over a range of entries of a map.

RangeMut

A mutable iterator over a range of the entries of a map.

VacantEntry

A view into a vacant map entry. It is part of the Entry enum.

Values

An iterator over the values of a map.

ValuesMut

A mutable iterator over the values of a map.

Enums

Entry

A view into a single map entry, which may either be vacant or occupied.