Function safe_arch::cmp_eq_i32_m128d_s
source ยท pub fn cmp_eq_i32_m128d_s(a: m128d, b: m128d) -> i32
Available with target feature
sse2
only.Expand description
Low lane f64
equal to.
i32
output.
let a = m128d::from_array([1.0, 5.0]);
let b = m128d::from_array([1.0, 1.0]);
assert_eq!(1_i32, cmp_eq_i32_m128d_s(a, b));