Type Alias Vec4U
Source pub type Vec4U<T> = Vector<4, T, Unaligned>;
Expand description
A 4-dimensional vector.
To initialize this type use the vec4 macro.
§No SIMD Alignment
This type is not SIMD-aligned and has the memory layout of [T; 4].
pub struct Vec4U<T>();