Edit

Share via


Vector4.LessThan(Vector4, Vector4) Method

Definition

Compares two vectors to determine which is less on a per-element basis.

public:
 static System::Numerics::Vector4 LessThan(System::Numerics::Vector4 left, System::Numerics::Vector4 right);
public static System.Numerics.Vector4 LessThan(System.Numerics.Vector4 left, System.Numerics.Vector4 right);
static member LessThan : System.Numerics.Vector4 * System.Numerics.Vector4 -> System.Numerics.Vector4
Public Shared Function LessThan (left As Vector4, right As Vector4) As Vector4

Parameters

left
Vector4

The vector to compare with left.

right
Vector4

The vector to compare with right.

Returns

A vector whose elements are all-bits-set or zero, depending on if which of the corresponding elements in left and right were less.

Applies to