Trait blas_array2::blas2::tpmv::TPMVFunc
source · pub trait TPMVFunc<F>where
F: BLASFloat,{
// Required method
unsafe fn tpmv(
uplo: *const c_char,
trans: *const c_char,
diag: *const c_char,
n: *const c_int,
ap: *const F,
x: *mut F,
incx: *const c_int,
);
}
Required Methods§
unsafe fn tpmv( uplo: *const c_char, trans: *const c_char, diag: *const c_char, n: *const c_int, ap: *const F, x: *mut F, incx: *const c_int, )
Object Safety§
This trait is not object safe.