Vector256.GreaterThanAll<T> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
比较两个向量以确定是否所有元素都更大。
public:
generic <typename T>
where T : value class static bool GreaterThanAll(System::Runtime::Intrinsics::Vector256<T> left, System::Runtime::Intrinsics::Vector256<T> right);
public:
generic <typename T>
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) where T : struct;
public static bool GreaterThanAll<T> (System.Runtime.Intrinsics.Vector256<T> left, System.Runtime.Intrinsics.Vector256<T> right);
static member GreaterThanAll : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> -> bool (requires 'T : struct)
static member GreaterThanAll : System.Runtime.Intrinsics.Vector256<'T> * System.Runtime.Intrinsics.Vector256<'T> -> bool
Public Function GreaterThanAll(Of T As Structure) (left As Vector256(Of T), right As Vector256(Of T)) As Boolean
Public Function GreaterThanAll(Of T) (left As Vector256(Of T), right As Vector256(Of T)) As Boolean
类型参数
- T
向量中元素的类型。
参数
- left
- Vector256<T>
要与 right
进行比较的向量。
- right
- Vector256<T>
要与 left
进行比较的向量。
返回
true
如果 中的所有 left
元素都大于 中的 right
相应元素,则为 。
例外
不支持 和 right
(T
) 的类型left
。