Vector.LessThanAll<T>(Vector<T>, Vector<T>) 方法

定义

返回一个值,该值指示第一个向量中的所有元素是否小于第二个向量中的相应元素。

public:
generic <typename T>
 where T : value class static bool LessThanAll(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public:
generic <typename T>
 static bool LessThanAll(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static bool LessThanAll<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right) where T : struct;
public static bool LessThanAll<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member LessThanAll : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> bool (requires 'T : struct)
static member LessThanAll : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> bool
Public Shared Function LessThanAll(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Boolean
Public Function LessThanAll(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Boolean
Public Function LessThanAll(Of T) (left As Vector(Of T), right As Vector(Of T)) As Boolean

类型参数

T

向量类型。 T 可以是任何基元数值类型。

参数

left
Vector<T>

要比较的第一个向量。

right
Vector<T>

要比较的第二个向量。

返回

true 如果 中的所有 left 元素都小于 中的 right相应元素,则为 ;否则为 false

适用于