Created
April 5, 2017 19:16
-
-
Save VojtaStavik/c09e47ba627f2e4ed60d1aefd25a4f89 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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