Trait TPMVNum

Source
pub trait TPMVNum: BLASFloat {
    // Required method
    unsafe fn tpmv(
        uplo: *const c_char,
        trans: *const c_char,
        diag: *const c_char,
        n: *const blas_int,
        ap: *const Self,
        x: *mut Self,
        incx: *const blas_int,
    );
}

Required Methods§

Source

unsafe fn tpmv( uplo: *const c_char, trans: *const c_char, diag: *const c_char, n: *const blas_int, ap: *const Self, x: *mut Self, incx: *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 TPMVNum for f32

Source§

unsafe fn tpmv( uplo: *const c_char, trans: *const c_char, diag: *const c_char, n: *const blas_int, ap: *const Self, x: *mut Self, incx: *const blas_int, )

Source§

impl TPMVNum for f64

Source§

unsafe fn tpmv( uplo: *const c_char, trans: *const c_char, diag: *const c_char, n: *const blas_int, ap: *const Self, x: *mut Self, incx: *const blas_int, )

Implementors§