Function v128_andnot
#[target_feature(enable = "simd128")]
pub fn v128_andnot(a: v128, b: v128) -> v128
Bitwise AND of bits of a and the logical inverse of bits of b.
This operation is equivalent to v128.and(a, v128.not(b))