예제 #1
0
파일: phashmap.go 프로젝트: dmiller/go-seq
func Hash(k interface{}) uint32 {
	return sequtil.Hash(k)
}
예제 #2
0
파일: map_entry.go 프로젝트: dmiller/go-seq
// Hash computes a hash value (based only on the key)
func (m MapEntry) Hash() uint32 {
	return sequtil.Hash(m.key)
}