bevy::utilsType Alias PreHashMap
source pub type PreHashMap<K, V> = HashMap<Hashed<K>, V, PassHash>;
Expand description
A HashMap
pre-configured to use Hashed
keys and PassHash
passthrough hashing.
Iteration order only depends on the order of insertions and deletions.
struct PreHashMap<K, V> { }