wy 1.1.2

Rust implementation of wyhash algorithms
Documentation
1
2
3
4
5
6
7
8
#[test]
fn should_rand() {
    let mut rand = wy::Random::new(0);
    assert_ne!(rand.gen(), 0);

    let rand = wy::AtomicRandom::new(2);
    assert_ne!(rand.gen(), 0);
}