[][src]Function murmur3::murmur3_x86_128

pub fn murmur3_x86_128<T: Read>(source: &mut T, seed: u32) -> Result<u128>

Use the x86 variant of the 128 bit murmur3 to hash some Read implementation.

Example

use std::io::Cursor;
use murmur3::murmur3_x86_128;
let hash_result = murmur3_x86_128(&mut Cursor::new("hello world"), 0);