Type Alias bevy::utils::PreHashMap

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

A HashMap pre-configured to use Hashed keys and PassHash passthrough hashing. Iteration order only depends on the order of insertions and deletions.

Aliased Typeยง

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