[][src]Function safe_arch::cmp_gt_i32_m128d_s

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

Low lane f64 greater than.

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_ge_i32_m128d_s(a, b));