Type Alias bevy_internal::utils::PreHashMap

source ·
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 */ }