o_Bit Shift
open override fun o_BitShift( self: AvailObject, shiftFactor: A_Number, canDestroy: Boolean): A_Number
Content copied to clipboard
Shift the given infinity to the left by the specified shift factor (number of bits). The shift factor is a finite integer, and shifting left or right never changes the sign of a number, so we answer self.
Return
⌊self × 2^shiftFactor⌋
Parameters
self
The infinity to shift.
shift Factor
How much to shift left (may be negative to indicate a right shift).
can Destroy
Whether it is permitted to alter the original object if it happens to be mutable.