Hashes any comparable type.
type Hasher64[K comparable] interface { SumObj64(key K) (s uint64) }
Wrapper for hash/maphash.Hash capable of hashing values of type K.
type MapHash[K comparable] struct { maphash.Hash // contains filtered or unexported fields }
▹ Example
func NewMapHash[K comparable]() (hm *MapHash[K])
Create a MapHash capable of hashing values of type K.
func NewMapHashFromExample[K comparable](val K) (hm *MapHash[K])
Create a MapHash from an example value capable of hashing values of the same type K. The value will only have its type inspected.
func (hm *MapHash[K]) SumObj64(key K) (s uint64)
SumObj64 hashes the key and returns the current 64-bit value, which depends on hm's seed and the sequence of bytes added to h since the last call to Hash.Reset or Hash.SetSeed.
Wraps a hash.Hash64 adding the information needed to be able to provide generic methods which hash any object of type K which has to be comparable.
type ReHash[K comparable] struct { hash.Hash64 // contains filtered or unexported fields }
func NewReHash[K comparable](h hash.Hash64) (rh *ReHash[K])
Create a ReHash capable of hashing values of type K.
func NewReHashFromExample[K comparable](h hash.Hash64, val K) (rh *ReHash[K])
Create a ReHash from an example value capable of hashing values of the same type K. The value will only have its type inspected.
func (rh *ReHash[K]) SumObj64(key K) (s uint64)
SumObj64 hashes the key and returns the current 64-bit value, and updates its state. The semantics are similar to that of the underlying hash when hash/Sum64 is called.
Wraps a hash.Hash64 adding the information needed to be able to provide generic methods which hash any object of type K ignoring the parts which are not comparable
type ReSubHash[K any] struct { hash.Hash64 // contains filtered or unexported fields }
func NewSubHash[K any](h hash.Hash64) (rh *ReSubHash[K])
Create a ReHash capable of hashing values of type K. The non-comparable fields (even in the subfields of the fields) will be ignored.
func NewSubHashFromExample[K any](h hash.Hash64, val K) (rh *ReSubHash[K])
Create a ReSubHash from an example value capable of hashing values of the same type K. The non-comparable fields (even in the subfields of the fields) will be ignored. The value will only have its type inspected.
func (rh *ReSubHash[K]) SumSubObj64(key K) (s uint64)
Calculate the hash of any type K. See hash.go for details on how this works. The only difference is that this method will ignore any non-comparable fields.
Hashes the comparable subset of any type. The non-comparable fields will be ignored, in the fields of the type and in the fields of the fields recursively.
type SubHasher64[K any] interface { SumSubObj64(key K) (s uint64) }