rblas::matrix_vector::ops

Trait Spr

Source
pub trait Spr: Sized {
    // Required method
    fn spr<V: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        x: &V,
        a: &mut dyn Matrix<Self>,
    );
}

Required Methods§

Source

fn spr<V: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Self, x: &V, a: &mut dyn Matrix<Self>, )

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 Spr for f32

Source§

fn spr<V: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &f32, x: &V, a: &mut dyn Matrix<f32>, )

Source§

impl Spr for f64

Source§

fn spr<V: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &f64, x: &V, a: &mut dyn Matrix<f64>, )

Implementors§