pub fn city_hash_64_with_seeds(bytes: &[u8], seed_0: u64, seed_1: u64) -> u64
Expand description

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

Example

use cityhash_sys::city_hash_64_with_seeds;

assert_eq!(city_hash_64_with_seeds(&[0u8,1,2,3,4], 123, 456), 0xD83C81881E3A35E3);