BitLeft
The operation shifts the value of first number to the left by second number bits.
syntax
BitLeft(number;shift)
example
BitLeft(7;1) = 14
explanation:
7 = bin 0111
14 = bin 1110
<- after shift 1 step on the left