Module alloc::collections::btree::map

source ·

Re-exports

Modules

Structs

  • CursorExperimental
    A cursor over a BTreeMap.
  • CursorMutExperimental
    A cursor over a BTreeMap with editing operations.
  • ExtractIfExperimental
    An iterator produced by calling extract_if on BTreeMap.
  • An ordered map based on a B-Tree.
  • Most of the implementation of ExtractIf are generic over the type of the predicate, thus also serving for BTreeSet::ExtractIf.
  • An owning iterator over the entries of a BTreeMap.
  • An owning iterator over the keys of a BTreeMap.
  • An owning iterator over the values of a BTreeMap.
  • An iterator over the entries of a BTreeMap.
  • A mutable iterator over the entries of a BTreeMap.
  • An iterator over the keys of a BTreeMap.
  • An iterator over a sub-range of entries in a BTreeMap.
  • A mutable iterator over a sub-range of entries in a BTreeMap.
  • An iterator over the values of a BTreeMap.
  • A mutable iterator over the values of a BTreeMap.

Constants

  • MIN_LEN 🔒
    Minimum number of elements in a node that is not a root. We might temporarily have fewer elements during methods.