immutable_chunkmap

Module map

source

Structs§

  • This Map uses a similar strategy to BTreeMap to ensure cache efficient performance on modern hardware while still providing log(N) get, insert, and remove operations.
  • A weak reference to a map.

Constants§

Type Aliases§

  • Map using a larger chunk size, faster to search, slower to update
  • Map using the default chunk size, a good balance of update and search
  • Map using a smaller chunk size, faster to update, slower to search