Big Integer.Less Than Operator
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Less | Returns whether a BigInteger is less than another and returns the result. |
Less | Returns whether an integer is less than a BigInteger. |
Less | Returns whether an integer is less than a BigInteger. |
LessThan(BigInteger, BigInteger) Operator
Returns whether a BigInteger is less than another and returns the result.
public static bool operator <(
BigInteger left,
BigInteger right
)
Parameters
- left BigInteger
- The first number to compare.
- right BigInteger
- The second number to compare.
Return Value
Booleantrue if left is less than right; otherwise false.
LessThan(BigInteger, Int32) Operator
Returns whether an integer is less than a BigInteger.
public static bool operator <(
BigInteger left,
int right
)
Parameters
- left BigInteger
- The first number to compare.
- right Int32
- The second number to compare.
Return Value
Booleantrue if left is less than right; otherwise false.
LessThan(Int32, BigInteger) Operator
Returns whether an integer is less than a BigInteger.
public static bool operator <(
int left,
BigInteger right
)
Parameters
- left Int32
- The first number to compare.
- right BigInteger
- The second number to compare.
Return Value
Booleantrue if left is less than right; otherwise false.