====== BitShift ====== BitShift(, ) The function returns the bitwise shift result for the passed value. **Parameters** |< 100% 15% >| |value|The number on which the operation is being performed.| |shift|The number of bits to shift. A positive number shifts to the right, a negative number shifts to the left.| **Related** [[bitand]], [[bitnot]], [[bitor]], [[bitxor]] **Remarks** Bitwise operations are performed as 32-bit integers. **Examples** MsgBox(BitShift(2, -1)) # --> 4 MsgBox(BitShift(16, 1)) # --> 8 MsgBox(BitShift(1, -31)) # --> -2147483648