OutputVar := instance.Divide(value)
Divides the current instance of MfBigInt by the divisor value and returns remainder as instance of MfBigInt
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 Remainder as instance of MfBigInt.
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.
If you need to work with decimal/float numbers see MfFloat
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'