Returns whether a
BigInteger is less than another and returns the result.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator <(
BigInteger left,
BigInteger right
)
Public Shared Operator < (
left As BigInteger,
right As BigInteger
) As Boolean
public:
static bool operator <(
BigInteger left,
BigInteger right
)
static let inline (<)
left : BigInteger *
right : BigInteger : bool
Parameters
- left
- Type: Extreme.MathematicsBigInteger
The first number to compare. - right
- Type: Extreme.MathematicsBigInteger
The second number to compare.
Return Value
Type:
Boolean if
left is less than
right;
otherwise
.
Reference