-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathLuaTableUtils.lua
127 lines (112 loc) · 2.52 KB
/
LuaTableUtils.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
tableext = {}
function tableext.empty( t )
return not next(t)
end
function tableext.isarray(t)
return #t > 0
end
function tableext.merge( dest, src )
for k,v in pairs(src) do
dest[k] = v
end
return dest
end
function tableext.equal( t1, t2 )
for k,v in pairs(t1) do
if v ~= t2[k] then return false end
end
for k,v in pairs(t2) do
if v ~= t1[k] then return false end
end
return true
end
function tableext.requal(t, t2)
for k, v in pairs(t) do
if type(v) == 'table' then
local v2 = t2[k]
if type(v2) ~= 'table' then return false end
if not tableext.requal(v, v2) then return false end
else
if v ~= t2[k] then return false end
end
end
for k, v in pairs(t2) do
if type(v) == 'table' then
local v2 = t[k]
if type(v2) ~= 'table' then return false end
if not tableext.requal(v, v2) then return false end
else
if v ~= t[k] then return false end
end
end
return true
end
function tableext.filter( t, condition )
local res = {}
for k, v in pairs(t) do
if condition(k,v) then
res[k] = v
end
end
return res
end
function tableext.map( t, func )
local r = {}
for k, v in pairs(t) do
local nk, nv = func(k, v)
r[nk] = nv
end
return r
end
function tableext.copy( t )
local res = {}
for k,v in pairs(t) do
res[k] = v
end
return res
end
function tableext.rcopy( t )
local res = {}
for k,v in pairs(t) do
if(type(v)=='table') then
res[k] = tableext.rcopy(v)
else
res[k] = v
end
end
return res
end
function tableext.values( t )
local res = {}
for _,v in pairs(t) do
table.insert(res, v)
end
return res
end
function tableext.keys( t )
local res = {}
for k,_ in pairs(t) do
table.insert(res, k)
end
return res
end
function tableext._tostring(t, depth, buff)
table.insert(buff, '{\n')
for k, v in pairs(t) do
if type(v) == 'table' then
table.insert(buff,
string.format('%s[%s] = ', string.rep('\t', depth + 1), utils.repr(k)))
tableext._tostring(v, depth + 1, buff)
table.insert(buff, ',\n')
else
table.insert(buff,
string.format('%s[%s] = %s,\n', string.rep('\t', depth + 1), utils.repr(k), utils.repr(v)))
end
end
table.insert(buff, string.format('%s}', string.rep('\t', depth)))
end
function tableext.tostring(t)
local buff = {}
tableext._tostring(t, 0, buff)
return table.concat(buff, '')
end