Trait randomkit::Sample [] [src]

pub trait Sample<Support> {
    fn sample(&self, rng: &mut Rng) -> Support;
}

Required Methods

Generate a pseudorandom element of Support using rng as the source of randomness.

Implementors