comparison util/bit53.lua @ 10411:db2a06b9ff98

Merge 0.11->trunk
author Kim Alvefur <zash@zash.se>
date Sat, 16 Nov 2019 16:52:31 +0100
parents 48f7cda4174d
children d77d8fba44ad
comparison
equal deleted inserted replaced
10410:659b577f280c 10411:db2a06b9ff98
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