type hash/maphash.Seed

11 uses

	hash/maphash (current package)
		maphash.go#L31: type Seed struct {
		maphash.go#L43: func Bytes(seed Seed, b []byte) uint64 {
		maphash.go#L67: func String(seed Seed, s string) uint64 {
		maphash.go#L104: 	seed  Seed          // initial seed used for this hash
		maphash.go#L105: 	state Seed          // current hash of all flushed bytes
		maphash.go#L199: func (h *Hash) Seed() Seed {
		maphash.go#L209: func (h *Hash) SetSeed(seed Seed) {
		maphash.go#L249: func MakeSeed() Seed {
		maphash.go#L259: 	return Seed{s: s}
		maphash.go#L287: func Comparable[T comparable](seed Seed, v T) uint64 {
		maphash_runtime.go#L50: func comparableHash[T comparable](v T, seed Seed) uint64 {