pub fn murmur3_32<T: Read>(source: &mut T, seed: u32) -> Result<u32>
Expand description

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

Example

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