Module hash_map

Source
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§

EntityHashMap
A HashMap pre-configured to use EntityHash hashing.
IntoKeys
An owning iterator over the keys of a EntityHashMap in arbitrary order. The iterator element type is Entity.
Keys
An iterator over the keys of a EntityHashMap in arbitrary order. The iterator element type is &'a Entity.