pub trait SelectFromMatrix<EvaluationDomain: ValueType> {
    // Required method
    fn apply(
        &self,
        selector: &impl IndexUnaryOperator<EvaluationDomain>,
        selector_argument: &EvaluationDomain,
        argument: &impl GetGraphblasSparseMatrix,
        accumulator: &impl AccumulatorBinaryOperator<EvaluationDomain>,
        product: &mut impl GetGraphblasSparseMatrix,
        mask: &impl MatrixMask,
        options: &impl GetOptionsForOperatorWithMatrixArgument
    ) -> Result<(), SparseLinearAlgebraError>;
}

Required Methods§

source

fn apply( &self, selector: &impl IndexUnaryOperator<EvaluationDomain>, selector_argument: &EvaluationDomain, argument: &impl GetGraphblasSparseMatrix, accumulator: &impl AccumulatorBinaryOperator<EvaluationDomain>, product: &mut impl GetGraphblasSparseMatrix, mask: &impl MatrixMask, options: &impl GetOptionsForOperatorWithMatrixArgument ) -> Result<(), SparseLinearAlgebraError>

Object Safety§

This trait is not object safe.

Implementors§