We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d41ce81 + 33dd687 commit 9300b14Copy full SHA for 9300b14
e2e_test.go
@@ -19,6 +19,14 @@ func TestMapCreation(t *testing.T) {
19
if m.Len() != 0 {
20
t.Errorf("new map should be empty but has %d items.", m.Len())
21
}
22
+
23
+ t.Run("default size is used when zero is provided", func(t *testing.T) {
24
+ m := New[int, int](0)
25
+ index := m.metadata.Load().index
26
+ if len(index) != defaultSize {
27
+ t.Error("map index size is not as expected")
28
+ }
29
+ })
30
31
32
func TestOverwrite(t *testing.T) {
map.go
@@ -64,7 +64,7 @@ type (
64
func New[K hashable, V any](size ...uintptr) *Map[K, V] {
65
m := &Map[K, V]{listHead: newListHead[K, V]()}
66
m.numItems.Store(0)
67
- if len(size) > 0 {
+ if len(size) > 0 && size[0] != 0 {
68
m.allocate(size[0])
69
} else {
70
m.allocate(defaultSize)
0 commit comments