BitShiftLeft()

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

BitShiftLeft()

OutputVar := instance.BitShiftLeft(value)

BitShiftLeft(value)

Performs left shift operation current instance bits by value amount.

Parameters

value

The number of places to shift bits left.
Can var integer or any type that matches IsInteger.

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 MfException for any other errors during the operation.

Example

bigI := new MfBigInt("77444564454564646", true)
bigI.BitShiftLeft(10)
MsgBox % bigI.Value ; 79303234001474197504

bigI := new MfBigInt(8, true)
bigI.BitShiftLeft(4)
MsgBox % bigI.Value ; 128

bigI := MfBigInt.Parse("+10111111", 2) ; parse binary base 2
bigI.BitShiftLeft(4)
; Display as binary base 2
MsgBox % bigI.ToString(2) ; 101111110000