pub type Vec4S<T> = Vector<4, T, NonSimd>;Expand description
A 4D vector of T elements.
Unlike Vec4, this type is never SIMD-aligned (“s” stands for
“scalar”).
This is a type alias for Vector<4, T, NonSimd>.
Aliased Type§
pub struct Vec4S<T>(/* private fields */);