binary_shift_left()
Returns binary shift left operation on a pair of numbers.
binary_shift_left(x,y)
Syntax
binary_shift_left(num1, num2 )
Arguments
- num1, num2: int numbers.
Returns
Returns binary shift left operation on a pair of numbers: num1 << (num2%64). If n is negative a NULL value is returned.