Type Alias bevy::utils::HashMap

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

A HashMap 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 HashMaps only depends on the order of insertions and deletions, but it will not be stable between multiple executions of the program.

Aliased Typeยง

struct HashMap<K, V> { /* private fields */ }