游戏王残局简化版

Diff
Login

Diff

Differences From Artifact [993ea5775b]:

To Artifact [24685689a3]:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local bit = bit
local s = {}
-- 和与或
--~ 左数
--~ 右数
function s.位和(o1, o2)
  return bit.band(o1, o2)
  end
-- 左移与右移
--~ 数
--~ 右移几位
function s.位右移(o1, o2)
  return bit.rshift(o1, o2)
  end
return s





|
|




|
|


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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