Fma

Trait Fma 

Source
pub trait Fma {
    // Required method
    fn fma(a: Self, b: Self, c: Self) -> Self;
}

Required Methods§

Source

fn fma(a: Self, b: Self, c: Self) -> 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 Fma for f32

Source§

fn fma(a: f32, b: f32, c: f32) -> f32

Source§

impl Fma for f64

Source§

fn fma(a: f64, b: f64, c: f64) -> f64

Implementors§