Divide()

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

Divide()

OutputVar := instance.Divide(value)

Divide(value)

Divides the current instance of MfBigInt by the divisor value and returns remainder as instance of MfBigInt

Parameters

value

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

Returns

Returns Remainder as instance of MfBigInt.

Throws

Throws MfNotSupportedException if ReadOnly is true.
Throws MfNullReferenceException if called as a static method
Throws MfArgumentNullException if value is null.
Throws MfDivideByZeroException if value is zero.
Throws MfArithmeticException if the operation fails or value is not an instance of MfBigInt and can not be converted into usable value.

Remarks

If you need to work with decimal/float numbers see MfFloat

Example

i := new MfBigInt("88839834534058347978797", true) ; create new MfBigInt and set it RetrunAsObject to value to true

iNew := new MfBigInt("5345354")
r := i.Divide(iNew)
MsgBox % MfString.Format("Result:'{0}', Remainder:'{1}'", r.Value, i.Value) ; Result:'16620009551108934', Remainder:'3186161'

i := new MfBigInt("88839834534058347978797", true) ; create new MfBigInt and set it RetrunAsObject to value to true

r := i.Divide("6456564564566")
MsgBox % MfString.Format("Result:'{0}', Remainder:'{1}'", r.Value, i.Value) ; Result:'13759613745', Remainder:'5976074419127'