feat: remove minimum-load option, hard-coded to 5%

This commit is contained in:
2026-04-03 16:24:25 +02:00
parent c834f004a2
commit 8b55ce7264
3 changed files with 6 additions and 28 deletions

View File

@@ -198,7 +198,7 @@ func NewCustomTable[K, V any](hashA, hashB Hash[K], compare EqualFunc[K], option
settings := &settings{
growthFactor: DefaultGrowthFactor,
bucketSize: DefaultCapacity,
minLoadFactor: DefaultMinimumLoad,
minLoadFactor: MinimumLoad,
}
for _, option := range options {