[][src]Type Definition mop_structs::vec::css::CssVec

type CssVec<T> = Css<Vec<T>, Vec<usize>>;

Methods

impl<T> CssVec<T>[src]

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

pub fn with_vec(len: usize, data: Vec<T>, indcs: Vec<usize>) -> Self[src]

Trait Implementations

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

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