pub type Simd<T, const N: usize> = <T as HasVector<N>>::Vector;
An alternative way of naming SIMD types.
type MyVector = Simd<u8, 16>; // The same as U8x16.