Skip to content

Instantly share code, notes, and snippets.

@VojtaStavik
Created April 5, 2017 19:16
Show Gist options
  • Save VojtaStavik/c09e47ba627f2e4ed60d1aefd25a4f89 to your computer and use it in GitHub Desktop.
Save VojtaStavik/c09e47ba627f2e4ed60d1aefd25a4f89 to your computer and use it in GitHub Desktop.
x >> a
// Bitwise shift: shifts all bits to the right of 'a' positions
// (operator << to the left)
Example:
8 ==> 1 0 0 0
8 >> 1 ==> 0 1 0 0
8 >> 2 ==> 0 0 1 0
8 >> 3 ==> 0 0 0 1
8 >> 4 ==> 0 0 0 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment