pub trait SampleRNG {
    type Item;

    fn sample(&self, n: usize) -> Vec<Self::Item>;
}
Expand description

Extract no-duplicate sample from Vector

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors