赞
踩
bit = {
}
function bit.lshift(num, bnum)
local ret = math.floor(num) * (2^bnum)
return ret
end
function bit.bor(num1, num2)
num1 = math.floor(num1)
num2 = math.floor(num2)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。