logo

Type Definition bevy::utils::StableHashMap[]

pub type StableHashMap<K, V> = HashMap<K, V, FixedState>;
Expand description

A stable std hash map implementing aHash, a high speed keyed hashing algorithm intended for use in in-memory hashmaps.

Unlike HashMap this has an iteration order that only depends on the order of insertions and deletions and not a random source.

aHash is designed for performance and is NOT cryptographically secure.