pub fn cmp_eq_mask_i8_m256i(a: m256i, b: m256i) -> m256i
Available with target feature avx2 only.
Expand description

Compare i8 lanes for equality, mask output.

assert_eq!(
  <[i8; 32]>::from(cmp_eq_mask_i8_m256i(m256i::from([1_i8; 32]), m256i::from([1_i8; 32]))),
  [-1_i8; 32]
);
assert_eq!(
  <[i8; 32]>::from(cmp_eq_mask_i8_m256i(m256i::from([5_i8; 32]), m256i::from([6_i8; 32]))),
  [0_i8; 32]
);