comparison util/bit53.lua @ 11200:bf8f2da84007

Merge 0.11->trunk
author Kim Alvefur <zash@zash.se>
date Thu, 05 Nov 2020 22:31:25 +0100
parents 48f7cda4174d
children d77d8fba44ad
comparison
equal deleted inserted replaced
11199:6c7c50a4de32 11200:bf8f2da84007
1 -- Only the operators needed by net.websocket.frames are provided at this point
2 return {
3 band = function (a, b) return a & b end;
4 bor = function (a, b) return a | b end;
5 bxor = function (a, b) return a ~ b end;
6 };
7