Trait SparseMat_NodeTraitConst

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

    // Provided methods
    fn hashval(&self) -> size_t { ... }
    fn next(&self) -> size_t { ... }
    fn idx(&self) -> &[i32; 32] { ... }
}
Expand description

Constant methods for core::SparseMat_Node

Required Methods§

Provided Methods§

Source

fn hashval(&self) -> size_t

hash value

Source

fn next(&self) -> size_t

index of the next node in the same hash table entry

Source

fn idx(&self) -> &[i32; 32]

index of the matrix element

Implementors§