Module agb::hash_map

source ·
Expand description

Contains an implementation of a hashmap which suits the gameboy advance’s hardware. A lot of the documentation for this module was copied straight out of the rust standard library. The implementation however is not.

Structs

A hash map implemented very simply using robin hood hashing.
An iterator over entries of a HashMap
An iterator over entries of a HashMap
A view into an occupied entry in a HashMap. This is part of the Entry enum.
A view into a vacant entry in a HashMap. It is part of the Entry enum.

Enums

A view into a single entry in a map, which may be vacant or occupied.

Traits

Trait for allocators that are clonable, blanket implementation for all types that implement Allocator and Clone