Function core::arch::wasm::v128_andnot
1.54.0 · source · pub fn v128_andnot(a: v128, b: v128) -> v128
Available on
target_family="wasm"
and target feature simd128
only.Expand description
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))