mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.bit53: Add left- and right shift operations
While not used by anything in Prosody, it is known to be used by some 3rd party modules.
This commit is contained in:
parent
e01f2cf25f
commit
27943c671c
1 changed files with 2 additions and 0 deletions
|
@ -3,5 +3,7 @@ return {
|
|||
band = function (a, b) return a & b end;
|
||||
bor = function (a, b) return a | b end;
|
||||
bxor = function (a, b) return a ~ b end;
|
||||
rshift = function (a, n) return a >> n end;
|
||||
lshift = function (a, n) return a << n end;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue