Vector512.AndNot<T>(Vector512<T>, Vector512<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算指定向量的位和另一個向量的補數。
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector512<T> AndNot(System::Runtime::Intrinsics::Vector512<T> left, System::Runtime::Intrinsics::Vector512<T> right);
public static System.Runtime.Intrinsics.Vector512<T> AndNot<T> (System.Runtime.Intrinsics.Vector512<T> left, System.Runtime.Intrinsics.Vector512<T> right);
static member AndNot : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector512<'T> -> System.Runtime.Intrinsics.Vector512<'T>
Public Function AndNot(Of T) (left As Vector512(Of T), right As Vector512(Of T)) As Vector512(Of T)
類型參數
- T
向量中專案的型別。
參數
- left
- Vector512<T>
與 位和 的 right
向量。
- right
- Vector512<T>
在位和 left
之前,向量是補數的 。
傳回
的位和 left
和 的 right
ones-補數。
例外狀況
不支援 和 right
(T
) 的類型 left
。