blob: 4b5c2e9cfe9cf5e92037408099b967822dbf2516 (
plain)
1
2
3
4
5
6
7
|
-- 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;
};
|