Vector512.GreaterThanAll<T> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
比較兩個向量,以判斷所有元素是否更大。
public:
generic <typename T>
static bool GreaterThanAll(System::Runtime::Intrinsics::Vector512<T> left, System::Runtime::Intrinsics::Vector512<T> right);
public static bool GreaterThanAll<T> (System.Runtime.Intrinsics.Vector512<T> left, System.Runtime.Intrinsics.Vector512<T> right);
static member GreaterThanAll : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector512<'T> -> bool
Public Function GreaterThanAll(Of T) (left As Vector512(Of T), right As Vector512(Of T)) As Boolean
類型參數
- T
向量中專案的型別。
參數
- left
- Vector512<T>
要與 right
比較的向量。
- right
- Vector512<T>
要與 left
比較的向量。
傳回
true
如果 中的所有 left
專案都大於 中的對應專案,則 right
為 。
例外狀況
不支援 和 right
(T
) 的類型 left
。