Trait BLAS

Source
pub trait BLAS<C: BLASContext>:
    BLAS1<C>
    + BLAS2<C>
    + BLAS3<C> { }
Expand description

A complete BLAS library, levels 1, 2 and 3

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.

Implementors§

Source§

impl<F, C: BLASContext> BLAS<C> for F
where F: BLAS1<C> + BLAS2<C> + BLAS3<C>,