[][src]Function safe_arch::bitandnot_m128

#[must_use]pub fn bitandnot_m128(a: m128, b: m128) -> m128
This is supported with target feature sse only.

Bitwise (!a) & b.

let a = m128::from_array([1.0, 0.0, 1.0, 0.0]);
let b = m128::from_array([1.0, 1.0, 0.0, 0.0]);
let c = bitandnot_m128(a, b).to_array();
assert_eq!(c, [0.0, 1.0, 0.0, 0.0]);