Software /
code /
prosody
File
util/bit53.lua @ 12633:5d8b0e0b9d48
util.datetime: Remove a line
No idea why the locals were declared on a line by itself. Perhaps line
length considerations? But saving 6 characters in width by adding a
whole line with 47 characters seems excessive.
This is still within the 150 character limit set by .luacheckrc
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 17 Aug 2022 18:07:31 +0200 |
parent | 12365:af02b033bd7f |
line wrap: on
line source
-- Only the operators needed by net.websocket.frames are provided at this point return { band = function (a, b, ...) local ret = a & b; if ... then for i = 1, select("#", ...) do ret = ret & (select(i, ...)); end end return ret; end; bor = function (a, b, ...) local ret = a | b; if ... then for i = 1, select("#", ...) do ret = ret | (select(i, ...)); end end return ret; end; bxor = function (a, b, ...) local ret = a ~ b; if ... then for i = 1, select("#", ...) do ret = ret ~ (select(i, ...)); end end return ret; end; rshift = function (a, n) return a >> n end; lshift = function (a, n) return a << n end; };