prosody/util/bit53.lua
Kim Alvefur 27943c671c 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.
2021-06-28 03:56:45 +02:00

9 lines
315 B
Lua

-- 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;
rshift = function (a, n) return a >> n end;
lshift = function (a, n) return a << n end;
};