Expand description
Contains the EntityHashMap
type, a HashMap
pre-configured to use EntityHash
hashing.
This module is a lightweight wrapper around Bevy’s HashMap
that is more performant for Entity
keys.
Structs§
- Entity
Hash Map - A
HashMap
pre-configured to useEntityHash
hashing. - Into
Keys - An owning iterator over the keys of a
EntityHashMap
in arbitrary order. The iterator element type isEntity
. - Keys
- An iterator over the keys of a
EntityHashMap
in arbitrary order. The iterator element type is&'a Entity
.