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

pub trait Copy: Sized {
    fn copy<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        src: &V,
        dst: &mut W
    );
fn copy_mat(src: &dyn Matrix<Self>, dst: &mut dyn 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: &dyn Matrix<Self>, dst: &mut dyn Matrix<Self>)

Copies the entire matrix dst into src.

Loading content...

Implementations on Foreign Types

impl Copy for f32[src]

impl Copy for f64[src]

impl Copy for Complex32[src]

impl Copy for Complex64[src]

Loading content...

Implementors

Loading content...