Vector.Xor<T>(Vector<T>, Vector<T>) 方法
定义
通过在两个向量中的每对元素上执行按位“异或”(XOr) 运算,返回一个新向量。Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.
public:
generic <typename T>
where T : value class static System::Numerics::Vector<T> Xor(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> Xor<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right) where T : struct;
static member Xor : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)> (requires 'T : struct)
Public Shared Function Xor(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
类型参数
- T
向量类型。The vector type. T 可以是任何基元数值类型。T can be any primitive numeric type.
参数
- left
- Vector<T>
第一个向量。The first vector.
- right
- Vector<T>
第二个向量。The second vector.
返回
所得的向量。The resulting vector.