Divide()

Namespace ›› System ›› MfUInt64 ›› Methods ››
Parent Previous Next

Divide()

OutputVar := instance.Divide(value)

Divide(value)

Divides the current instance of MfUInt64 by the divisor value.

Parameters

value

The Divisor value to divide the current instance Value by.
Can be any type that matches IsNumber, var integer or var string of integer numbers.

Returns

If ReturnAsObject is true then returns current instance of MfUInt64 with an updated Value; Otherwise returns Value as var.

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 MfUInt64 and can not be converted into integer value.
Throws MfArgumentOutOfRangeException if dividing result is less then MinValue and greater than MaxValue

Remarks

When value greater then MfInt64.MaxValue the values must be enclosed in "" and passed as a string as shown in the example below.

AutoHotkey has an integer upper limit of MfInt64.MaxValue. As a precaution all integer values passed into MfUInt64 methods can be wrapped in double quotes. eg: i := new MfUInt64("10", true)

If the result of the operation is not a whole number such as 4/2 but rather a float number such as 8/3 (8/3 = 2.6666...) then the result will always be the whole number portion of the operation. For example:

mfInt := new MfUInt64(8)
MsgBox % mfInt.Divide(3) ; displays 2

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

Example

i := new MfUInt64(MfUInt64.MaxValue, true) ; create new MfUInt64 at max value and set it RetrunAsObject to value to true

iNew := new MfUInt64("8")
MsgBox % i.Divide(iNew).Value          ; displays 2305843009213693951
MsgBox % i.Add(-5).Value               ; displays 2305843009213693946
MsgBox % i.Add("10").Divide("2").Value ; displays 1152921504606846978