noiserand 1.0.0

Random white noise turned into random numbers
Documentation
1
2
3
4
5
6
7
8
9
10
11
use noiserand::NoiseRand;
use rand::Rng;

fn main() {
    env_logger::init();

    let mut rng = NoiseRand::new();
    let x: u32 = rng.gen();
    println!("{}", x);
    println!("{:?}", rng.gen::<(f64, bool)>());
}