Safe version of UnsafeHashSet.
Unordered hash set.
Safe version of UnsafeHashMap.
Dense hash map acting as a mostly-compatible (even if unsafe) AA replacement.
Performance is roughly equivalent to AAs, but can be made a bit better with preallocation.
This module provides hash tables with deterministic memory usage (not reliant on the GC), as a betterC alternative to the built-in AAs.
Includes both unsafe (explicitly managed) and safe (refcounted) hash-based data types.