Vector.LessThanAll<T>(Vector<T>, Vector<T>) 方法
定义
返回一个值,该值指示第一个向量中的所有元素是否小于第二个向量中的相应元素。Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.
public:
generic <typename T>
where T : value class 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;
static member LessThanAll : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> bool (requires 'T : struct)
Public Shared Function LessThanAll(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Boolean
类型参数
- T
向量类型。The vector type. T 可以是任何基元数值类型。T can be any primitive numeric type.
参数
- left
- Vector<T>
要比较的第一个向量。The first vector to compare.
- right
- Vector<T>
要比较的第二个向量。The second vector to compare.
返回
如果 left 中的所有元素均小于 right 中的相应元素,则为 true;否则为 false。true if all of the elements in left are less than the corresponding elements in right; otherwise, false.