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 MfUInt64 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.
AutoHotkey has a integer upper limit of MfInt64.MaxValue. MfUInt64 can have greater values up to MfUInt.MaxValue. For this reason preforming bitwise operations in the standard AutoHotkey way by using <<, >>, &, ^, | operates will not work on on MfUInt64 values.
Bits are wrapped when shifted. Shifting by multiples 64 would give you the same number
UInt := new MfUInt64("77444564454564646", true)
UInt.BitShiftLeft(10)
MsgBox % UInt.Value ; 5516257706635991040
UInt := new MfUInt64("77444564454564646", true)
UInt.BitShiftLeft(64)
MsgBox % UInt.Value ; 77444564454564646