Trait mpi::collective::Operation [] [src]

pub trait Operation: AsRaw<Raw = MPI_Op> {
    fn is_commutative(&self) -> bool { ... }
}

An operation to be used in a reduction or scan type operation, e.g. MPI_SUM

Provided Methods

Returns whether the operation is commutative.

Standard section(s)

5.9.7

Implementations on Foreign Types

impl<'a, T: 'a + Operation> Operation for &'a T
[src]

Implementors