Method Xor
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
Xor<T>(Vector128<T>, Vector128<T>)
Computes the exclusive-or of two vectors (计算两个向量的位异或).
Mnemonic: rt[i] := left[i] ^ right[i]
.
public static Vector128<T> Xor<T>(Vector128<T> left, Vector128<T> right) where T : struct
Parameters
left
Vector128<T>The vector to exclusive-or with
right
(将会与right
进行位异或运算的向量).right
Vector128<T>The vector to exclusive-or with
left
(将会与left
进行位异或运算的向量).
Returns
- Vector128<T>
The exclusive-or of
left
andright
(left
与right
的位异或运算结果).
Type Parameters
T
The vector element type (向量中的元素的类型).
- See Also