pub trait SparseMatIteratorTrait: SparseMatConstIteratorTrait + SparseMatIteratorTraitConst {
    fn as_raw_mut_SparseMatIterator(&mut self) -> *mut c_void;

    fn incr(&mut self) -> Result<SparseMatIterator> { ... }
}

Required Methods§

Provided Methods§

moves iterator to the next element

Implementors§