Trait ark_ff::UniformRand

source ·
pub trait UniformRand: Sized {
    // Required method
    fn rand<R>(rng: &mut R) -> Self
       where R: Rng + ?Sized;
}

Required Methods§

source

fn rand<R>(rng: &mut R) -> Selfwhere R: Rng + ?Sized,

Implementors§

source§

impl<T> UniformRand for Twhere Standard: Distribution<T>,