#random #numbers #generator

rand_num_gen

随机数生成器特质

1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2017年11月4日

#86#rng

MIT 许可证

3MB
374

rs-rand_num_gen

随机数生成器

extern crate rand_num_gen;


use rand_num_gen::{Rng, XorShift};


fn main() {
    let mut rng = XorShift::new();
    let x: f32 = rng.next();
    let y = rng.next_u32();
    let z = rng.next_usize();
    let w = rng.next_f64();
    println!("{:?} {:?} {:?} {:?}", x, y, z, w);
}

无运行时依赖