hashmap icon indicating copy to clipboard operation
hashmap copied to clipboard

A simple and efficient hashmap package for Go. Open addressing, robin hood hashing, and xxh3 algorithm. Supports generics.

Results 2 hashmap issues
Sort by recently updated
recently updated
newest added

here is a simple test to reproduce: ```go type Foo struct { Bar string } func TestStringStruct(t *testing.T) { m := New[Foo, int](50) mg := map[Foo]int{} for i := 0;...

How about gc performence with stdlib