游戏王残局简化版

算机_程语_月_基类_数_位算.lua at [78f69c6bf5]
Login

算机_程语_月_基类_数_位算.lua at [78f69c6bf5]

File single_doc/lua_lib/算机_程语_月_基类_数_位算.lua artifact 24685689a3 part of check-in 78f69c6bf5


local bit = bit
local s = {}
-- 和与或
--~ 左数
--~ 右数
function s.位和(u1, u2)
  return bit.band(u1, u2)
  end
-- 左移与右移
--~ 数
--~ 右移几位
function s.位右移(u1, u2)
  return bit.rshift(u1, u2)
  end
return s