1个稳定版本
1.0.0 | 2023年8月17日 |
---|
#199 在 #tiny
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