UInt128.LessThanOrEqual(UInt128, UInt128) Operator

Definition

Compares two values to determine which is less or equal.

public:
 static bool operator <=(UInt128 left, UInt128 right) = System::Numerics::IComparisonOperators<UInt128, UInt128, bool>::op_LessThanOrEqual;
public static bool operator <= (UInt128 left, UInt128 right);
static member ( <= ) : UInt128 * UInt128 -> bool
Public Shared Operator <= (left As UInt128, right As UInt128) As Boolean

Parameters

left
UInt128

The value to compare with right.

right
UInt128

The value to compare with left.

Returns

true if left is less than or equal to right; otherwise, false.

Implements

Applies to