Returns whether an integer is greater than or equal to a
BigInteger.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator >=(
BigInteger left,
int right
)
Public Shared Operator >= (
left As BigInteger,
right As Integer
) As Boolean
public:
static bool operator >=(
BigInteger left,
int right
)
static let inline (>=)
left : BigInteger *
right : int : bool
Parameters
- left
- Type: Extreme.MathematicsBigInteger
The first number to compare. - right
- Type: SystemInt32
The second number to compare.
Return Value
Type:
Boolean if
left is greater than or equal to
right;
otherwise
.
Reference