OutputVar := instance.BitShiftLeft(value)
Performs left shift operation current instance bits by value amount.
value
The number of places to shift bits left.
Can var integer or any type that matches IsInteger.
If ReturnAsObject is true then returns current instance of MfBigInt with an updated Value; Otherwise returns Value as var.
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.
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