Vector64.LessThan<T>(Vector64<T>, Vector64<T>) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Сравнивает два вектора, чтобы определить, что меньше на основе каждого элемента.
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector64<T> LessThan(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public:
generic <typename T>
where T : value class static System::Runtime::Intrinsics::Vector64<T> LessThan(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public static System.Runtime.Intrinsics.Vector64<T> LessThan<T>(System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right);
public static System.Runtime.Intrinsics.Vector64<T> LessThan<T>(System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right) where T : struct;
static member LessThan : System.Runtime.Intrinsics.Vector64<'T> * System.Runtime.Intrinsics.Vector64<'T> -> System.Runtime.Intrinsics.Vector64<'T>
static member LessThan : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> (requires 'T : struct)
Public Function LessThan(Of T) (left As Vector64(Of T), right As Vector64(Of T)) As Vector64(Of T)
Public Function LessThan(Of T As Structure) (left As Vector64(Of T), right As Vector64(Of T)) As Vector64(Of T)
Параметры типа
- T
Тип элементов в векторе.
Параметры
- left
- Vector64<T>
Вектор для сравнения с left.
- right
- Vector64<T>
Вектор для сравнения с right.
Возвращаемое значение
Вектор, элементы которого являются всеми битами или нулем, в зависимости от того, какие из соответствующих элементов в left и right были меньше.
Исключения
Тип left и right (T) не поддерживается.