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

    fn hashval(&self) -> size_t { ... }
    fn next(&self) -> size_t { ... }
}
Expand description

sparse matrix node - element of a hash table

Required Methods

Provided Methods

hash value

index of the next node in the same hash table entry

Implementors