Function safe_arch::zeroed_m128d

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

Both lanes zero.

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