Comparison

util/bit53.lua @ 10563:e8db377a2983

Merge 0.11->trunk
author Kim Alvefur <zash@zash.se>
date Tue, 24 Dec 2019 00:39:45 +0100
parent 10241:48f7cda4174d
child 12358:d77d8fba44ad
comparison
equal deleted inserted replaced
10562:670afc079f68 10563:e8db377a2983
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