Function murmurhash64::murmur_hash64a [] [src]

pub fn murmur_hash64a(key: &[u8], seed: u64) -> u64

Hash the given key and the given seed.

Returns the resulting 64bit hash.

Example:

let key = "Pizza & Mandolino";
let seed = 2915580697;

let hash = murmur_hash64a(key.as_bytes(), seed);