Trait packed_simd_2::SimdArray[][src]

pub trait SimdArray: Seal {
    type Tuple: Copy + Clone;
    type T;
    type NT;

    const N: usize;
}
Expand description

Trait implemented by arrays that can be SIMD types.

Associated Types

The type of the #[repr(simd)] type.

The element type of the vector.

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

Associated Constants

The number of elements in the array.

Implementors