pub trait SparseMat_NodeTrait: SparseMat_NodeTraitConst {
    fn as_raw_mut_SparseMat_Node(&mut self) -> *mut c_void;

    fn set_hashval(&mut self, val: size_t) { ... }
    fn set_next(&mut self, val: size_t) { ... }
    fn idx(&mut self) -> &mut [i32; 32] { ... }
}

Required Methods

Provided Methods

hash value

index of the next node in the same hash table entry

index of the matrix element

Implementors