Expand description
Re-exports§
Modules§
- Provides
HashMap
based on hashbrown’s implementation. Unlikehashbrown::HashMap
,HashMap
defaults toFixedHasher
instead ofRandomState
. This provides determinism by default with an acceptable compromise to denial of service resistance in the context of a game engine. - Provides
HashSet
based on hashbrown’s implementation. Unlikehashbrown::HashSet
,HashSet
defaults toFixedHasher
instead ofRandomState
. This provides determinism by default with an acceptable compromise to denial of service resistance in the context of a game engine. - Provides
HashTable
Structs§
- Low-level hash table with explicit hashing.
Traits§
- Key equivalence trait.