Type Definition vectoreyes::Simd

source · []
pub type Simd<T, const N: usize> = <T as HasVector<N>>::Vector;
Expand description

An alternative way of naming SIMD types.

Example

type MyVector = Simd<u8, 16>; // The same as U8x16.