BigInteger.GreaterThanOrEqual(BigInteger, Int32) Operator

Returns whether an integer is greater than or equal to a BigInteger.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
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

Boolean
true if left is greater than or equal to right; otherwise false.

See Also