pub trait TransposeMatrix<EvaluationDomain: ValueType> {
    // Required method
    fn apply(
        &self,
        matrix: &impl GetGraphblasSparseMatrix,
        accumulator: &impl AccumulatorBinaryOperator<EvaluationDomain>,
        transpose: &mut impl GetGraphblasSparseMatrix,
        mask: &impl MatrixMask,
        options: &impl GetOptionsForOperatorWithMatrixArgument
    ) -> Result<(), SparseLinearAlgebraError>;
}

Required Methods§

source

fn apply( &self, matrix: &impl GetGraphblasSparseMatrix, accumulator: &impl AccumulatorBinaryOperator<EvaluationDomain>, transpose: &mut impl GetGraphblasSparseMatrix, mask: &impl MatrixMask, options: &impl GetOptionsForOperatorWithMatrixArgument ) -> Result<(), SparseLinearAlgebraError>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<EvaluationDomain: ValueType> TransposeMatrix<EvaluationDomain> for MatrixTranspose