package dual_selector import "hash/maphash" type key string var seed = maphash.MakeSeed() func (k key) Sum() uint64 { return maphash.String(seed, string(k)) }