Trait rblas::vector::ops::Copy [] [src]

pub trait Copy: Sized {
    fn copy<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(src: &V, dst: &mut W);
    fn copy_mat(src: &Matrix<Self>, dst: &mut Matrix<Self>);
}

Required Methods

fn copy<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(src: &V, dst: &mut W)

Copies src.len() elements of src into dst.

fn copy_mat(src: &Matrix<Self>, dst: &mut Matrix<Self>)

Copies the entire matrix dst into src.

Implementors