Trait packed_simd_2::SimdVector[][src]

pub trait SimdVector: Seal {
    type Element;
    type LanesType;

    const LANES: usize;
}
Expand description

This trait is implemented by all SIMD vector types.

Associated Types

Element type of the SIMD vector

The type: [u32; Self::N].

Associated Constants

The number of elements in the SIMD vector.

Implementors