pub fn city_hash_64_with_seed(bytes: &[u8], seed: u64) -> u64
Expand description

Retrieves a 64-bit hash of a slice of bytes, a seed is also hashed into the result.

Example

use cityhash_sys::city_hash_64_with_seed;

assert_eq!(city_hash_64_with_seed(&[0u8,1,2,3,4], 123), 0xCE1706019C5E61A7);