#numbers #generator #tiny #32-bits

pcg_with_xorshift

一个小型随机数生成器

1个稳定版本

1.0.0 2023年8月17日

#199#tiny

Apache-2.0

6KB
87

pcg_with_xorshift

32位pcg_with_xorshift随机数生成器

简单的随机数生成器,无需std库

用法

use pcg_with_xorshift::{PcgWithXorshift, RandomNumberGeneratorEngine};
fn main() {
let mut pcg = PcgWithXorshift::new(None);
let number = pcg.get();
}

参考

https://www.pcg-random.org/
https://github.com/flo-at/rustsnake.git

无运行时依赖