package
0.7.0
Repository: https://github.com/vadv/gopher-lua-libs.git
Documentation: pkg.go.dev

# README

bit GoDoc

Usage

local bit = require("bit")

local result, _ = bit.band(1, 0)
print(result)
-- Output: 0

local result, _ = bit.lshift(10, 5)
print(result)
-- Output: 320