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

    const LANES: usize;
}
Expand description

This trait is implemented by all SIMD vector types.

Required Associated Types

Element type of the SIMD vector

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

Required Associated Constants

The number of elements in the SIMD vector.

Implementors