pub type HexMap<System, Orientation, Parity, T> = FxHashMap<Coordinate<System, Orientation, Parity>, T>;
Expand description
A type alias for a hash map that associates coordinates with values. This is commonly used to store data for hexagonal grids.
§Type Parameters
T
: The type of the values stored in the map.
Aliased Type§
struct HexMap<System, Orientation, Parity, T> { /* private fields */ }