[][src]Function safe_arch::cmp_eq_i32_m128d_s

#[must_use]pub fn cmp_eq_i32_m128d_s(a: m128d, b: m128d) -> i32
This is supported with target feature sse2 only.

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));