pub trait GetGraphblasSparseVector: GetContext {
    // Required methods
    unsafe fn graphblas_vector(&self) -> GrB_Vector;
    unsafe fn graphblas_vector_ref(&self) -> &GrB_Vector;
    unsafe fn graphblas_vector_mut_ref(&mut self) -> &mut GrB_Vector;
}

Required Methods§

source

unsafe fn graphblas_vector(&self) -> GrB_Vector

source

unsafe fn graphblas_vector_ref(&self) -> &GrB_Vector

source

unsafe fn graphblas_vector_mut_ref(&mut self) -> &mut GrB_Vector

Implementors§