Module spacetimedb_data_structures::map

source ·

Structs§

  • A hash map implemented with quadratic probing and SIMD lookup.
  • A hash set implemented as a HashMap where the value is ().

Enums§

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

Traits§

Type Aliases§

  • Default hasher for HashMap.
  • A version of HashMap<K, V> using the identity hash function, which is valid for any key type that can be converted to a u64 without truncation.