pub trait RandOp<T>: Alloc<T> {
    fn rand(&self, x: &mut Buffer<'_, T>, lo: T, hi: T);
}

Required Methods

Implementations on Foreign Types

Implementors