pub fn cmp_nge_mask_m128d(a: m128d, b: m128d) -> m128d
Available with target feature sse2 only.
Expand description

Lanewise !(a >= b).

Mask output.

let a = m128d::from_array([3.0, 0.0]);
let b = m128d::from_array([1.0, 1.0]);
let c = cmp_nge_mask_m128d(a, b).to_bits();
assert_eq!(c, [0, u64::MAX]);