Trait basic_dsp_vector::ToSimd [] [src]

pub trait ToSimd: Sized + Sync + Send {
    type Reg: Simd<Self> + SimdGeneric<Self> + Copy + Sync + Send + Add<Output=Self::Reg> + Sub<Output=Self::Reg> + Mul<Output=Self::Reg> + Div<Output=Self::Reg> + Zero;
}

Associates a number type with a SIMD register type.

Associated Types

Implementors