func()

in qf.go [274:281]


func (qf *Filter) InsertRawHash(hv uint64, value uint64) (update bool) {
	if qf.maxEntries <= qf.entries {
		qf.double()
	}
	dq := hv >> qf.rBits
	dr := hv & qf.rMask
	return qf.insertByHash(dq, dr, value)
}