How to use the bitwise left shift operator (<<) in Ruby
Overview
In Ruby, the bitwise left shift operator shifts each bit of a number to the left by n positions.
For a better understanding, see the diagram below:
Syntax
number << shifts
Syntax for bitwise left shift operator
Parameters
number: This is the number whose bits we want to shift.
shifts: This is the number of positions we want to shift the bits of number.
Return value
The value returned is an integer. It is equivalent to the decimal value of the number after shifting the bits.
Example
# shift some bits of numbersputs 2 << 1puts 7 << 2puts 1 << 2puts 5 << 3
Explanation
In the code above:
- Lines 2–5: We use the bitwise left shift operator to shift the bits of some numbers and then we print the results to the console screen.