[][src]Type Definition mop_structs::matrix::dr_matrix::DrMatrixVec

type DrMatrixVec<T> = DrMatrix<Vec<T>>;

Methods

impl<T> DrMatrixVec<T>[src]

pub fn new_rnd<F, R>(shape: [usize; 2], rng: &mut R, cb: F) -> Self where
    F: FnMut(&mut R, [usize; 2]) -> T,
    R: Rng
[src]

pub fn with_vec_capacity(shape: [usize; 2]) -> Self[src]

Trait Implementations

impl<T> Arbitrary for DrMatrixVec<T> where
    Standard: Distribution<T>,
    T: Arbitrary, 
[src]

fn shrink(&self) -> Box<dyn Iterator<Item = Self> + 'static>