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