pub trait FloatSimd<F: Float, const N: usize>: SIMD<F, N> {
// Required method
fn multiply_add(&mut self, a: Self, b: Self);
}
Required Methods§
Sourcefn multiply_add(&mut self, a: Self, b: Self)
fn multiply_add(&mut self, a: Self, b: Self)
fused multiply-add
c = a * b + c
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.