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