BigInteger.GreaterThanOrEqual(Int32, BigInteger) 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 >=(
	int left,
	BigInteger right
)

Parameters

left  Int32
The first number to compare.
right  BigInteger
The second number to compare.

Return Value

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

See Also