devela/num/rand/lgc/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
// devela::num::rand::lgc
//
//! Linear Congruential Generators
//

mod u16;
// mod u32;
// mod u64;

pub use u16::Lgc16;
// pub use u32::Lgc32;
// pub use u64::Lgc64;