in config.go [59:70]
func (c *Config) QBits() uint { x := uint(1) bits := uint(0) for (float64(x) * MaxLoadingFactor) < float64(c.ExpectedEntries) { x <<= 1 bits++ } if bits < minQBits { bits = minQBits } return bits }