xxhash_safe.go raw

   1  package xxhash
   2  
   3  // Sum64String computes the 64-bit xxHash digest of s.
   4  func Sum64String(s string) uint64 {
   5  	return Sum64([]byte(s))
   6  }
   7  
   8  // WriteString adds more data to d. It always returns len(s), nil.
   9  func (d *Digest) WriteString(s string) (n int, err error) {
  10  	return d.Write([]byte(s))
  11  }
  12