Function mur3::murmurhash3_x64_128[][src]

pub fn murmurhash3_x64_128(bytes: &[u8], seed: u32) -> (u64, u64)

Gets the 128-bit MurmurHash3 sum of data.

If you only need 64-bit result, just use the first returned value. To feed multiple byte slices, use Hasher128 instead.

The function is optimized for 64 bit platform.