Function safe_arch::zeroed_m128

source ·
pub fn zeroed_m128() -> m128
Available with target feature sse only.
Expand description

All lanes zero.

let a = zeroed_m128().to_array();
assert_eq!(a, [0.0, 0.0, 0.0, 0.0]);