mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.bit53: Support for more than 2 arguments, for compat with bit32
This commit is contained in:
parent
ffb37f3ef3
commit
a905ccb71a
1 changed files with 27 additions and 3 deletions
|
@ -1,8 +1,32 @@
|
|||
-- Only the operators needed by net.websocket.frames are provided at this point
|
||||
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;
|
||||
band = function (a, b, ...)
|
||||
local ret = a & b;
|
||||
if ... then
|
||||
for i = 1, select("#", ...) do
|
||||
ret = ret & (select(i, ...));
|
||||
end
|
||||
end
|
||||
return ret;
|
||||
end;
|
||||
bor = function (a, b, ...)
|
||||
local ret = a | b;
|
||||
if ... then
|
||||
for i = 1, select("#", ...) do
|
||||
ret = ret | (select(i, ...));
|
||||
end
|
||||
end
|
||||
return ret;
|
||||
end;
|
||||
bxor = function (a, b, ...)
|
||||
local ret = a ~ b;
|
||||
if ... then
|
||||
for i = 1, select("#", ...) do
|
||||
ret = ret ~ (select(i, ...));
|
||||
end
|
||||
end
|
||||
return ret;
|
||||
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