util.bit53: Support for more than 2 arguments, for compat with bit32

This commit is contained in:
Matthew Wild 2022-03-04 19:37:59 +00:00
parent ffb37f3ef3
commit a905ccb71a

View file

@ -1,8 +1,32 @@
-- Only the operators needed by net.websocket.frames are provided at this point -- Only the operators needed by net.websocket.frames are provided at this point
return { return {
band = function (a, b) return a & b end; band = function (a, b, ...)
bor = function (a, b) return a | b end; local ret = a & b;
bxor = function (a, b) return a ~ b end; 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; rshift = function (a, n) return a >> n end;
lshift = function (a, n) return a << n end; lshift = function (a, n) return a << n end;
}; };