Trait rust_blas::vector::ops::Swap[][src]

pub trait Swap: Sized {
    fn swap<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        x: &mut V,
        y: &mut W
    ); }
Expand description

Swaps the content of x and y.

Required methods

If they are different lengths, the shorter length is used.

Implementations on Foreign Types

Implementors