logo

Type Definition bevy::utils::StableHashSet

[]
pub type StableHashSet<K> = HashSet<K, FixedState, Global>;
Expand description

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

Unlike HashSet 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.