Module avl::map

source ·
Expand description

An ordered map implemented with an AVL tree.

Structs

  • An ordered map implemented with an AVL tree.
  • An owning iterator over the entries of a map.
  • An iterator over the entries of a map.
  • A mutable iterator over the entries of a map.
  • An iterator over the keys of a map.
  • A view into an occupied map entry. It is part of the Entry enum.
  • An iterator over a range of entries of a map.
  • A mutable iterator over a range of the entries of a map.
  • A view into a vacant map entry. It is part of the Entry enum.
  • An iterator over the values of a map.
  • A mutable iterator over the values of a map.

Enums

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