Trait blas_array2::blas2::gerc::GERCFunc
source · pub trait GERCFunc<F>where
F: BLASFloat,{
// Required method
unsafe fn gerc(
m: *const c_int,
n: *const c_int,
alpha: *const F,
x: *const F,
incx: *const c_int,
y: *const F,
incy: *const c_int,
a: *mut F,
lda: *const c_int,
);
}
Required Methods§
unsafe fn gerc( m: *const c_int, n: *const c_int, alpha: *const F, x: *const F, incx: *const c_int, y: *const F, incy: *const c_int, a: *mut F, lda: *const c_int, )
Object Safety§
This trait is not object safe.