pub trait IndependentSample<Support>: Sample<Support> {
    fn ind_sample<R: Rng>(&self, rng: &mut R) -> Support;
}
Expand description

Samples that do not require keeping track of state.

Since no state is recorded, each sample is (statistically) independent of all others, assuming the Rng used has this property.

Required Methods

Generate a random value.

Implementors