Function safe_arch::zeroed_m128i

source ·
pub fn zeroed_m128i() -> m128i
Available with target feature sse2 only.
Expand description

All lanes zero.

let a = zeroed_m128i();
assert_eq!(u128::from(a), 0);