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