GreaterThenOrEqual()

Namespace ›› System ›› MfBigInt ›› Methods ››
Parent Previous Next

GreaterThenOrEqual()

OutputVar := instance.GreaterThenOrEqual(value)

GreaterThenOrEqual(value)

Compares the current MfBigInt object to value and returns an indication of their relative values.

Parameters

value

The Object or var containing, integer to compare to current instance.
Can be var integer representation or any type that matches IsIntegerNumber or MfUInt64 or MfBigInt

Returns

Returns true if the current instance has greater or equal value then the value instance; otherwise false.

Throws

Throws MfNullReferenceException if called as a static method
Throws MfArgumentNullException if value is null.

Remarks

If value is a float or MfFloat instance then method will alway round down for positive number and round up for negative numbers. For instance 2.8 is converted to 2 and -2.8 is converted to -2.