An open API service indexing awesome lists of open source software.

https://github.com/zxdev/xxhash

XXH64 as a single function call
https://github.com/zxdev/xxhash

xxhash

Last synced: 5 months ago
JSON representation

XXH64 as a single function call

Awesome Lists containing this project

README

          

# 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.

```golang
// 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.