1 // +build !appengine 2 // +build gc 3 // +build !purego 4 5 package xxhash 6 7 // Sum64 computes the 64-bit xxHash digest of b. 8 // 9 //go:noescape 10 func Sum64(b []byte) uint64 11 12 func writeBlocks(x *xxh, b []byte) []byte 13
View as plain text