Trait collenchyma_blas::operation::IOperationSwap [] [src]

pub trait IOperationSwap<F> {
    fn compute(&self, x: &mut MemoryType, y: &mut MemoryType) -> Result<(), Error>;
}

Describes a Swap Operation.

Required Methods

fn compute(&self, x: &mut MemoryType, y: &mut MemoryType) -> Result<(), Error>

Computes the Swap operation.

Implementors