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 { ... }
}
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

Implementors§