Type Alias bevy_utils::HashSet
source · pub type HashSet<K> = HashSet<K, BuildHasherDefault<AHasher>>;
Expand description
A HashSet
implementing aHash, a high
speed keyed hashing algorithm intended for use in in-memory hashmaps.
aHash is designed for performance and is NOT cryptographically secure.
Within the same execution of the program iteration order of different
HashSet
s only depends on the order of insertions and deletions,
but it will not be stable between multiple executions of the program.
Aliased Type§
struct HashSet<K> { /* private fields */ }