Vector256.AndNot<T>(Vector256<T>, Vector256<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算给定向量和给定向量以及另一个向量的补数。
public:
generic <typename T>
where T : value class static System::Runtime::Intrinsics::Vector256<T> AndNot(System::Runtime::Intrinsics::Vector256<T> left, System::Runtime::Intrinsics::Vector256<T> right);
public static System.Runtime.Intrinsics.Vector256<T> AndNot<T> (System.Runtime.Intrinsics.Vector256<T> left, System.Runtime.Intrinsics.Vector256<T> right) where T : struct;
static member AndNot : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> (requires 'T : struct)
Public Function AndNot(Of T As Structure) (left As Vector256(Of T), right As Vector256(Of T)) As Vector256(Of T)
类型参数
- T
向量中的元素的类型。
参数
- left
- Vector256<T>
要按位和具有 right
的向量。
- right
- Vector256<T>
在按位和配 left
号之前,向量是相补的。
返回
的按位和 left
值补 right
数。