Vector.LessThan 메서드

정의

오버로드

LessThan(Vector<Int64>, Vector<Int64>)

한 정수(long) 벡터의 요소가 두 번째 정수(long) 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수(long) 벡터를 반환합니다.

LessThan(Vector<Single>, Vector<Single>)

한 단정밀도 벡터의 요소가 두 번째 단정밀도 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수 벡터를 반환합니다.

LessThan(Vector<Double>, Vector<Double>)

한 배정밀도 부동 소수점 벡터의 요소가 두 번째 배정밀도 부동 소수점 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수 벡터를 반환합니다.

LessThan(Vector<Int32>, Vector<Int32>)

한 정수 벡터의 요소가 두 번째 정수 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수 벡터를 반환합니다.

LessThan<T>(Vector<T>, Vector<T>)

한 벡터의 요소가 두 번째 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 지정된 형식의 새 벡터를 반환합니다.

LessThan(Vector<Int64>, Vector<Int64>)

Source:
Vector.cs
Source:
Vector.cs
Source:
Vector.cs

한 정수(long) 벡터의 요소가 두 번째 정수(long) 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수(long) 벡터를 반환합니다.

public:
 static System::Numerics::Vector<long> LessThan(System::Numerics::Vector<long> left, System::Numerics::Vector<long> right);
public static System.Numerics.Vector<long> LessThan (System.Numerics.Vector<long> left, System.Numerics.Vector<long> right);
static member LessThan : System.Numerics.Vector<int64> * System.Numerics.Vector<int64> -> System.Numerics.Vector<int64>
Public Shared Function LessThan (left As Vector(Of Long), right As Vector(Of Long)) As Vector(Of Long)
Public Function LessThan (left As Vector(Of Long), right As Vector(Of Long)) As Vector(Of Long)

매개 변수

left
Vector<Int64>

비교할 첫 번째 벡터입니다.

right
Vector<Int64>

비교할 두 번째 벡터입니다.

반환

결과 정수(long) 벡터입니다.

적용 대상

LessThan(Vector<Single>, Vector<Single>)

Source:
Vector.cs
Source:
Vector.cs
Source:
Vector.cs

한 단정밀도 벡터의 요소가 두 번째 단정밀도 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수 벡터를 반환합니다.

public:
 static System::Numerics::Vector<int> LessThan(System::Numerics::Vector<float> left, System::Numerics::Vector<float> right);
public static System.Numerics.Vector<int> LessThan (System.Numerics.Vector<float> left, System.Numerics.Vector<float> right);
static member LessThan : System.Numerics.Vector<single> * System.Numerics.Vector<single> -> System.Numerics.Vector<int>
Public Shared Function LessThan (left As Vector(Of Single), right As Vector(Of Single)) As Vector(Of Integer)
Public Function LessThan (left As Vector(Of Single), right As Vector(Of Single)) As Vector(Of Integer)

매개 변수

left
Vector<Single>

비교할 첫 번째 벡터입니다.

right
Vector<Single>

비교할 두 번째 벡터입니다.

반환

결과 정수 벡터입니다.

적용 대상

LessThan(Vector<Double>, Vector<Double>)

Source:
Vector.cs
Source:
Vector.cs
Source:
Vector.cs

한 배정밀도 부동 소수점 벡터의 요소가 두 번째 배정밀도 부동 소수점 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수 벡터를 반환합니다.

public:
 static System::Numerics::Vector<long> LessThan(System::Numerics::Vector<double> left, System::Numerics::Vector<double> right);
public static System.Numerics.Vector<long> LessThan (System.Numerics.Vector<double> left, System.Numerics.Vector<double> right);
static member LessThan : System.Numerics.Vector<double> * System.Numerics.Vector<double> -> System.Numerics.Vector<int64>
Public Shared Function LessThan (left As Vector(Of Double), right As Vector(Of Double)) As Vector(Of Long)
Public Function LessThan (left As Vector(Of Double), right As Vector(Of Double)) As Vector(Of Long)

매개 변수

left
Vector<Double>

비교할 첫 번째 벡터입니다.

right
Vector<Double>

비교할 두 번째 벡터입니다.

반환

결과 정수 벡터입니다.

적용 대상

LessThan(Vector<Int32>, Vector<Int32>)

Source:
Vector.cs
Source:
Vector.cs
Source:
Vector.cs

한 정수 벡터의 요소가 두 번째 정수 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 새 정수 벡터를 반환합니다.

public:
 static System::Numerics::Vector<int> LessThan(System::Numerics::Vector<int> left, System::Numerics::Vector<int> right);
public static System.Numerics.Vector<int> LessThan (System.Numerics.Vector<int> left, System.Numerics.Vector<int> right);
static member LessThan : System.Numerics.Vector<int> * System.Numerics.Vector<int> -> System.Numerics.Vector<int>
Public Shared Function LessThan (left As Vector(Of Integer), right As Vector(Of Integer)) As Vector(Of Integer)
Public Function LessThan (left As Vector(Of Integer), right As Vector(Of Integer)) As Vector(Of Integer)

매개 변수

left
Vector<Int32>

비교할 첫 번째 벡터입니다.

right
Vector<Int32>

비교할 두 번째 벡터입니다.

반환

결과 정수 벡터입니다.

적용 대상

LessThan<T>(Vector<T>, Vector<T>)

Source:
Vector.cs
Source:
Vector.cs
Source:
Vector.cs

한 벡터의 요소가 두 번째 벡터의 해당 요소보다 작은지를 신호로 알리는 요소가 포함된 지정된 형식의 새 벡터를 반환합니다.

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

형식 매개 변수

T

벡터 형식입니다. T는 기본 숫자 형식일 수 있습니다.

매개 변수

left
Vector<T>

비교할 첫 번째 벡터입니다.

right
Vector<T>

비교할 두 번째 벡터입니다.

반환

결과 벡터입니다.

적용 대상