Type Alias SparseResult

Source
pub type SparseResult<T> = Result<T, SparseError>;
Expand description

Result type for sparse matrix/array operations

Aliased Type§

pub enum SparseResult<T> {
    Ok(T),
    Err(SparseError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SparseError)

Contains the error value