Trait GERNum

Source
pub trait GERNum: BLASFloat {
    // Required method
    unsafe fn ger(
        m: *const blas_int,
        n: *const blas_int,
        alpha: *const Self,
        x: *const Self,
        incx: *const blas_int,
        y: *const Self,
        incy: *const blas_int,
        a: *mut Self,
        lda: *const blas_int,
    );
}

Required Methods§

Source

unsafe fn ger( m: *const blas_int, n: *const blas_int, alpha: *const Self, x: *const Self, incx: *const blas_int, y: *const Self, incy: *const blas_int, a: *mut Self, lda: *const blas_int, )

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl GERNum for f32

Source§

unsafe fn ger( m: *const blas_int, n: *const blas_int, alpha: *const Self, x: *const Self, incx: *const blas_int, y: *const Self, incy: *const blas_int, a: *mut Self, lda: *const blas_int, )

Source§

impl GERNum for f64

Source§

unsafe fn ger( m: *const blas_int, n: *const blas_int, alpha: *const Self, x: *const Self, incx: *const blas_int, y: *const Self, incy: *const blas_int, a: *mut Self, lda: *const blas_int, )

Implementors§