DrMatrixVec

Type Alias DrMatrixVec 

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

Aliased Type§

pub struct DrMatrixVec<T> { /* private fields */ }

Implementations§

Source§

impl<T> DrMatrixVec<T>

Source

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,

Source

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

Trait Implementations§

Source§

impl<T> Arbitrary for DrMatrixVec<T>

Available on crate features quickcheck and rand only.
Source§

fn arbitrary<G>(g: &mut G) -> Self
where G: Gen,

Source§

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