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:

Left shift 2 by 1 bit

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 numbers
puts 2 << 1
puts 7 << 2
puts 1 << 2
puts 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.

New on Educative
Learn to Code
Learn any Language as a beginner
Develop a human edge in an AI powered world and learn to code with AI from our beginner friendly catalog
🏆 Leaderboard
Daily Coding Challenge
Solve a new coding challenge every day and climb the leaderboard

Free Resources