Module hash_ord::ord_map[][src]

Structs

Cursors

An cursor of a OrdMap.

IntoIter

An owning iterator over the entries of a OrdMap.

Iter

An iterator over the (key, value) of a OrdMap.

IterMut

An iterator over the (key, mut value) of a OrdMap.

Keys

An iterator over the keys of a OrdMap.

OccupiedEntry

A view into an occupied entry in a OrdMap. It is part of the Entry enum.

OrdMap

Optimized AVL.

Range

An iterator over a sub-range of entries in a OrdMap.

RangeMut

A mutable iterator over a sub-range of entries in a OrdMap.

SortedList

An owning sorted list converted from a IntoIter.

SortedListIter

An iterator over the (key, value) of a SortedList.

VacantEntry

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

Values

An iterator over the values of a OrdMap.

ValuesMut

A mutable iterator over the values of a OrdMap.

Enums

Entry

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