Module indexmap::map

source ·
Expand description

IndexMap is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.

Modules

  • core 🔒
    This is the core implementation that doesn’t depend on the hasher at all.
  • iter 🔒
  • mutable 🔒
  • Opt-in access to the experimental raw entry API.
  • Functions to serialize and deserialize an IndexMap as an ordered sequence.
  • slice 🔒

Structs

Enums

  • Entry for an existing key-value pair in an IndexMap or a vacant location to insert one.

Traits