util.bitops: Library to find appropriate bitwise library (closes #1395)

This commit is contained in:
Kim Alvefur 2019-07-22 01:58:57 +02:00
parent 42861396cd
commit 3dcfc5ee71
3 changed files with 40 additions and 2 deletions

View file

@ -9,8 +9,7 @@
local softreq = require "util.dependencies".softreq;
local random_bytes = require "util.random".bytes;
local bit = assert(softreq"bit32" or softreq"bit",
"No bit module found. See https://prosody.im/doc/depends#bitop");
local bit = require "util.bitcompat";
local band = bit.band;
local bor = bit.bor;
local bxor = bit.bxor;