Multiply()

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

Multiply()

OutputVar := instance.Multiply(value)

Multiply(value)

Multiplies the current instance of MfBigInt by the value.

Parameters

value

The value to multiply the current instance Value by.
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 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 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(80, true) ; create new MfInt64 and set it RetrunAsObject to value to true

iNew := new MfBigInt(8)
MsgBox % i.Multiply(iNew).Value ; displays 640
MsgBox % i.Add(-5).Value ; displays 635
MsgBox % i.Add(10).Multiply(2).Value ; displays 1290

i := new MfBigInt(123, true) ; create new MfInt64 and set it RetrunAsObject to value to true
MsgBox % i.Multiply("35734895734589734").Multiply("703583085305").Value
; displays 3092523587861400923100208841010