Trait SparseMatConstIteratorTraitConst

Source
pub trait SparseMatConstIteratorTraitConst {
    // Required method
    fn as_raw_SparseMatConstIterator(&self) -> *const c_void;

    // Provided methods
    fn m(&self) -> SparseMat { ... }
    fn hashidx(&self) -> size_t { ... }
    fn ptr(&self) -> *const u8 { ... }
    fn node(&self) -> Result<SparseMat_Node> { ... }
}
Expand description

Constant methods for core::SparseMatConstIterator

Required Methods§

Provided Methods§

Source

fn m(&self) -> SparseMat

Source

fn hashidx(&self) -> size_t

Source

fn ptr(&self) -> *const u8

Source

fn node(&self) -> Result<SparseMat_Node>

returns the current node of the sparse matrix. it.node->idx is the current element index

Implementors§