Struct rand::distributions::RandSample
[−]
[src]
pub struct RandSample<Sup> { // some fields omitted }
Unstable (
rand
): use rand
from crates.io
A wrapper for generating types that implement Rand
via the
Sample
& IndependentSample
traits.
Methods
impl<Sup> RandSample<Sup>
[src]
fn new() -> RandSample<Sup>
Trait Implementations
impl<Sup: Rand> Sample<Sup> for RandSample<Sup>
[src]
fn sample<R: Rng>(&mut self, rng: &mut R) -> Sup
Generate a random value of Support
, using rng
as the source of randomness. Read more
impl<Sup: Rand> IndependentSample<Sup> for RandSample<Sup>
[src]
fn ind_sample<R: Rng>(&self, rng: &mut R) -> Sup
Generate a random value.