Function safe_arch::bitxor_m128 [−][src]
Expand description
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 = bitxor_m128(a, b).to_array();
assert_eq!(c, [0.0, 1.0, 1.0, 0.0]);