Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
haltdos-pro-waf / usr / local / lib / lua / 5.1 / resty / mqtt / bit53.lua
Size: Mime:
-- implementing some functions from BitOp (http://bitop.luajit.org/) on Lua 5.3

return {
	lshift = function(x, n)
		return x << n
	end,
	rshift = function(x, n)
		return x >> n
	end,
	bor = function(x1, x2)
		return x1 | x2
	end,
	band = function(x1, x2)
		return x1 & x2
	end,
}

-- vim: ts=4 sts=4 sw=4 noet ft=lua