CssVecArray

Type Alias CssVecArray 

Source
pub type CssVecArray<DA, IA> = Css<VecArray<DA>, VecArray<IA>>;

Aliased Type§

pub struct CssVecArray<DA, IA> { /* private fields */ }

Implementations§

Source§

impl<DA, IA> CssVecArray<DA, IA>
where DA: Array, IA: Array<Item = usize>,

Source

pub fn new_rnd<F, R>(len: usize, nnz: usize, rng: &mut R, cb: F) -> Self
where F: FnMut(&mut R, usize) -> DA::Item, R: Rng,

Source

pub fn with_vec_array( len: usize, data: VecArray<DA>, indcs: VecArray<IA>, ) -> Self