pub fn stdrng_from_seed(seed: u64) -> StdRngExpand description
Std random number generator from seed
ยงExamples
use peroxide::fuga::*;
fn main() {
    let mut rng = stdrng_from_seed(42);
    let n = Normal(0f64, 1f64);
    n.sample_with_rng(&mut rng, 10).print();
}