feat: new put implementation

This commit is contained in:
2026-04-04 00:13:50 +02:00
parent 322d71f0be
commit 05b633afca
7 changed files with 111 additions and 67 deletions

View File

@@ -76,7 +76,7 @@ func FuzzInsertLookup(f *testing.F) {
_, err = actual.Get(step.key)
assert.Error(err)
} else {
err := actual.Put(step.key, step.value)
_, err := actual.Put(step.key, step.value)
assert.NoError(err)
expected[step.key] = step.value