mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
util.bitops: Library to find appropriate bitwise library (closes #1395)
This commit is contained in:
parent
42861396cd
commit
3dcfc5ee71
3 changed files with 40 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue