Vector.AndNot<T>(Vector<T>, Vector<T>) 方法
定义
通过在两个向量中的每对相应元素上执行按位“与非”运算,返回一个新向量。Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.
public:
generic <typename T>
where T : value class static System::Numerics::Vector<T> AndNot(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> AndNot<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right) where T : struct;
static member AndNot : 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 AndNot(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.