Skip to main content

SIMDFloat

Trait SIMDFloat 

Source
pub trait SIMDFloat:
    SIMDVector
    + Add<Output = Self>
    + Mul<Output = Self>
    + Sub<Output = Self>
    + SIMDMulAdd
    + SIMDMinMax
    + SIMDPartialEq
    + SIMDPartialOrd { }
Expand description

A roll-up of traits required for SIMD floating point types.

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<T> SIMDFloat for T
where T: SIMDVector + Add<Output = Self> + Mul<Output = Self> + Sub<Output = Self> + SIMDMulAdd + SIMDMinMax + SIMDPartialEq + SIMDPartialOrd,