pub fn gxhash64(input: &[u8], seed: i32) -> u64
Hashes an arbitrary stream of bytes to an u64.
let bytes = [42u8; 1000]; let seed = 1234; println!("Hash is {:x}!", gxhash::gxhash64(&bytes, seed));