Function safe_arch::cmp_le_i32_m128_s
source ยท pub fn cmp_le_i32_m128_s(a: m128, b: m128) -> i32
Available with target feature
sse
only.Expand description
Low lane less than or equal to.
i32
output.
let a = m128::from_array([0.5, 2.0, 3.0, 4.0]);
let b = m128::from_array([1.0, 1.0, 1.0, 1.0]);
assert_eq!(1_i32, cmp_le_i32_m128_s(a, b));