pub fn v128_andnot(a: v128, b: v128) -> v128
simd128
Bitwise AND of bits of a and the logical inverse of bits of b.
a
b
This operation is equivalent to v128.and(a, v128.not(b))
v128.and(a, v128.not(b))