Function safe_arch::cmp_eq_mask_i64_m128i
source · pub fn cmp_eq_mask_i64_m128i(a: m128i, b: m128i) -> m128i
Expand description
Lanewise a == b
with lanes as i64
.
All bits 1 for true (-1
), all bit 0 for false (0
).
let a = m128i::from([5_i64, 6_i64]);
let b = m128i::from([5_i64, 7_i64]);
let c: [i64; 2] = cmp_eq_mask_i64_m128i(a, b).into();
assert_eq!(c, [-1_i64, 0]);