Vector256.GreaterThanAll<T> メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
2 つのベクトルを比較して、すべての要素が大きいかどうかを判断します。
public:
generic <typename T>
static bool GreaterThanAll(System::Runtime::Intrinsics::Vector256<T> left, System::Runtime::Intrinsics::Vector256<T> right);
public:
generic <typename T>
where T : value class static bool GreaterThanAll(System::Runtime::Intrinsics::Vector256<T> left, System::Runtime::Intrinsics::Vector256<T> right);
public static bool GreaterThanAll<T>(System.Runtime.Intrinsics.Vector256<T> left, System.Runtime.Intrinsics.Vector256<T> right);
public static bool GreaterThanAll<T>(System.Runtime.Intrinsics.Vector256<T> left, System.Runtime.Intrinsics.Vector256<T> right) where T : struct;
static member GreaterThanAll : System.Runtime.Intrinsics.Vector256<'T> * System.Runtime.Intrinsics.Vector256<'T> -> bool
static member GreaterThanAll : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> -> bool (requires 'T : struct)
Public Function GreaterThanAll(Of T) (left As Vector256(Of T), right As Vector256(Of T)) As Boolean
Public Function GreaterThanAll(Of T As Structure) (left As Vector256(Of T), right As Vector256(Of T)) As Boolean
型パラメーター
- T
ベクター内の要素の型。
パラメーター
- left
- Vector256<T>
rightと比較するベクトル。
- right
- Vector256<T>
leftと比較するベクトル。
返品
true
left内のすべての要素がrightの対応する要素より大きい場合。
例外
leftとright (T) の種類はサポートされていません。