Trait SYR2KNum

Source
pub trait SYR2KNum: BLASFloat {
    // Required method
    unsafe fn syr2k(
        uplo: *const c_char,
        trans: *const c_char,
        n: *const blas_int,
        k: *const blas_int,
        alpha: *const Self,
        a: *const Self,
        lda: *const blas_int,
        b: *const Self,
        ldb: *const blas_int,
        beta: *const Self,
        c: *mut Self,
        ldc: *const blas_int,
    );
}

Required Methods§

Source

unsafe fn syr2k( uplo: *const c_char, trans: *const c_char, n: *const blas_int, k: *const blas_int, alpha: *const Self, a: *const Self, lda: *const blas_int, b: *const Self, ldb: *const blas_int, beta: *const Self, c: *mut Self, ldc: *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 SYR2KNum for f32

Source§

unsafe fn syr2k( uplo: *const c_char, trans: *const c_char, n: *const blas_int, k: *const blas_int, alpha: *const Self, a: *const Self, lda: *const blas_int, b: *const Self, ldb: *const blas_int, beta: *const Self, c: *mut Self, ldc: *const blas_int, )

Source§

impl SYR2KNum for f64

Source§

unsafe fn syr2k( uplo: *const c_char, trans: *const c_char, n: *const blas_int, k: *const blas_int, alpha: *const Self, a: *const Self, lda: *const blas_int, b: *const Self, ldb: *const blas_int, beta: *const Self, c: *mut Self, ldc: *const blas_int, )

Implementors§