You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduced a high-performance, unmanaged `HashMap<TKey, TValue>`
optimized for .NET 8.0 or greater. The implementation includes
SIMD-based probing, alignment-aware memory management, and
dynamic resizing for efficient operations. Added a `Tag` system
to manage hash table slot states and utility methods for probing
and hashing.
Added `AlignmentHelper` for aligning values up or down to the
nearest multiple of a given alignment.
Included a comprehensive test suite (`HashMapTests.cs`) to verify
the correctness of the `HashMap` implementation, covering
operations like adding, retrieving, resizing, and removing
elements.
0 commit comments