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

    // Provided method
    fn incr(&mut self) -> Result<SparseMatIterator> { ... }
}
Expand description

Mutable methods for core::SparseMatIterator

Required Methods§

Provided Methods§

source

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

moves iterator to the next element

Implementors§