MulAdd

Trait MulAdd 

Source
pub trait MulAdd<U, V> {
    // Required method
    fn mul_add(self, a: &U, b: &V) -> Self;
}

Required Methods§

Source

fn mul_add(self, a: &U, b: &V) -> 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 MulAdd<f32, f32> for f32

Source§

fn mul_add(self, a: &f32, b: &f32) -> Self

Source§

impl MulAdd<f64, f64> for f64

Source§

fn mul_add(self, a: &f64, b: &f64) -> Self

Implementors§