Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 394 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 394 Bytes

xxhash

The xxhash package implements the 64-bit variant of xxHash (XXH64) as described at http://cyan4973.github.io/xxHash/ without any Go standard library package dependancy nor any hash.Hash interface components.

// signatures
Sum(b []byte) uint64
SSum(s string) uint64

The minimalist approach is clean and consise and simple to use with no additional code overhead.