Add()

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

Add()

OutputVar := instance.Add(value)

Add(value)

Adds value to current instance of MfBigInt.

Parameters

value

The value to add to the current instance.
Can be var integer representation or any type that matches IsIntegerNumber or MfUInt64 or MfBigInt

Returns

If ReturnAsObject is true then returns current instance of MfBigInt with an updated value; Otherwise returns var containing integer.

Throws

Throws MfNotSupportedException if Readonly is true.
Throws MfNullReferenceException if called as a static method
Throws MfArgumentNullException if value is null.
Throws MfArgumentException if value is not able to be converted for usage by current instance.

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.

Example

i := new MfBigInt(0, true) ; create new MfInt64 and set it RetrunAsObject to value to true
i.Add(2)
iNew := new MfBigInt("5785834585805893405858034584509789576")
MsgBox % i.Add(iNew).Value                                      ; displays 5785834585805893405858034584509789578
MsgBox % i.Add("-053405829305806934085940685").Value            ; displays 5785834585805893405858034584509767301
MsgBox % i.Add(258897).Add(new MfInt64(MfInt64.MaxValue)).Value ; displays 5785834585805893405858034584510026198