游戏王残局简化版

Diff
Login

Diff

Differences From Artifact [0c39de34a5]:

To Artifact [993ea5775b]:


1
2

3
4
5
6

7
8
9
10
11
12

13
14
15

1

2
3
4
5

6
7
8
9
10
11

12
13
14

15

-
+



-
+





-
+


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