BITLSHIFT(a,n)
a: non-negative integer
n: integer
BITLSHIFT returns the binary representations of a shifted n positions to the left.
If n is negative, BITLSHIFT shifts the bits to the right by ABS(n) positions.
BITRSHIFT.