Type Definition bevy_utils::StableHashSet

source ·
pub type StableHashSet<K> = HashSet<K, FixedState>;
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.