2个版本
0.9.1 | 2022年9月10日 |
---|---|
0.9.0 | 2022年8月27日 |
#2158 in 算法
7KB
Simple rnd
小型、闪电般快速的随机数生成库。
examples/simple.rs
use simple_rnd::Rand;
fn main() {
let mut rand = Rand::new(0); // The parameter is the starting value (seed)
for _ in 0..16 {
println!("{}", rand.next()); // rand.next() generates next u64 number
}
}