peroxide::util::wrapper

Trait SampleRNG

Source
pub trait SampleRNG {
    type Item;

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

Extract no-duplicate sample from Vector

Required Associated Types§

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

impl SampleRNG for String

Source§

type Item = char

Source§

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

Source§

impl SampleRNG for Vec<char>

Source§

type Item = char

Source§

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

Source§

impl SampleRNG for Vec<f32>

Source§

type Item = f32

Source§

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

Source§

impl SampleRNG for Vec<f64>

Source§

type Item = f64

Source§

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

Source§

impl SampleRNG for Vec<i32>

Source§

type Item = i32

Source§

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

Source§

impl SampleRNG for Vec<i64>

Source§

type Item = i64

Source§

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

Source§

impl SampleRNG for Vec<isize>

Source§

type Item = isize

Source§

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

Source§

impl SampleRNG for Vec<u32>

Source§

type Item = u32

Source§

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

Source§

impl SampleRNG for Vec<u64>

Source§

type Item = u64

Source§

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

Source§

impl SampleRNG for Vec<usize>

Source§

type Item = usize

Source§

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

Source§

impl<'a> SampleRNG for Vec<&'a str>

Source§

type Item = &'a str

Source§

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

Implementors§