[][src]Function safe_arch::andnot_m128i

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

Bitwise (!a) & b.

let a = m128i::from([1, 0, 1, 0]);
let b = m128i::from([1, 1, 0, 0]);
let c: [i32; 4] = andnot_m128i(a, b).into();
assert_eq!(c, [0, 1, 0, 0]);