共用方式為


Vector128.GreaterThanAll<T> 方法

定義

比較兩個向量,以判斷所有元素是否更大。

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 比較的向量。

傳回

Boolean

true 如果 中的所有 left 專案都大於 中的對應專案,則 right 為 。

適用於