Created
April 23, 2011 09:39
-
-
Save mebens/938502 to your computer and use it in GitHub Desktop.
Functions for quick left and right bitwise shifts in Lua.
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
function lshift(x, by) | |
return x * 2 ^ by | |
end | |
function rshift(x, by) | |
return math.floor(x / 2 ^ by) | |
end |
@blackknight36
0x03 is hexadecimal 3 = binary 11
shifting binary 11 to right twice results 0
floor is correct
Thanks. Not sure what I was thinking here.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There seems to be a bug in the rshift function as defined here. Shifting a value of 0x01 twice should result in a value of 0 while shifting a value of 0x03 twice should result in a value of 1. Lua will return 0 for both of these operations as shown below.
Using the math.round function defined at http://lua-users.org/wiki/SimpleRound appears to fix this however.
I haven't tested the results with larger numbers but for simply 8 bit integer operations this appears to be enough.