github.com/arr-ai/hash@v0.8.0/hashable.go (about) 1 package hash 2 3 // Hashable represents a type that can evaluate its own hash. 4 type Hashable interface { 5 Hash(seed uintptr) uintptr 6 }