devela/num/rand/lgc/
mod.rs

1// devela::num::rand::lgc
2//
3//! Linear Congruential Generators
4//
5
6mod u16;
7// mod u32;
8// mod u64;
9
10pub use u16::Lgc16;
11// pub use u32::Lgc32;
12// pub use u64::Lgc64;