2019-03-13 20:55:24 -07:00
|
|
|
local List, Dict, Undict, _undict_mt, _dict_mt
|
2018-08-29 19:38:14 -07:00
|
|
|
local insert, remove, concat
|
|
|
|
do
|
|
|
|
local _obj_0 = table
|
|
|
|
insert, remove, concat = _obj_0.insert, _obj_0.remove, _obj_0.concat
|
|
|
|
end
|
2018-09-18 19:48:58 -07:00
|
|
|
local as_nomsu
|
|
|
|
as_nomsu = function(self)
|
|
|
|
if type(self) == 'number' then
|
|
|
|
return tostring(self)
|
|
|
|
end
|
|
|
|
do
|
|
|
|
local mt = getmetatable(self)
|
|
|
|
if mt then
|
|
|
|
do
|
|
|
|
local _as_nomsu = mt.as_nomsu
|
|
|
|
if _as_nomsu then
|
|
|
|
return _as_nomsu(self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-09-28 18:35:37 -07:00
|
|
|
return tostring(self)
|
2018-09-18 19:48:58 -07:00
|
|
|
end
|
|
|
|
local as_lua
|
|
|
|
as_lua = function(self)
|
|
|
|
if type(self) == 'number' then
|
|
|
|
return tostring(self)
|
|
|
|
end
|
|
|
|
do
|
|
|
|
local mt = getmetatable(self)
|
|
|
|
if mt then
|
|
|
|
do
|
|
|
|
local _as_lua = mt.as_lua
|
|
|
|
if _as_lua then
|
|
|
|
return _as_lua(self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-09-28 18:35:37 -07:00
|
|
|
return tostring(self)
|
2018-09-18 19:48:58 -07:00
|
|
|
end
|
2018-11-06 15:13:55 -08:00
|
|
|
local nth_to_last
|
|
|
|
nth_to_last = function(self, n)
|
|
|
|
return self[#self - n + 1]
|
|
|
|
end
|
2018-08-29 19:38:14 -07:00
|
|
|
local _list_mt = {
|
2019-01-16 21:33:02 -08:00
|
|
|
__type = "a List",
|
2018-11-06 15:13:55 -08:00
|
|
|
__eq = function(self, other)
|
|
|
|
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self) and #other == #self) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
for i, x in ipairs(self) do
|
|
|
|
if not (x == other[i]) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end,
|
2018-08-29 19:38:14 -07:00
|
|
|
__tostring = function(self)
|
|
|
|
return "[" .. concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local b = self[_index_0]
|
2018-09-28 18:35:37 -07:00
|
|
|
_accum_0[_len_0] = as_nomsu(b)
|
2018-08-29 19:38:14 -07:00
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), ", ") .. "]"
|
|
|
|
end,
|
2018-09-18 19:48:58 -07:00
|
|
|
as_nomsu = function(self)
|
|
|
|
return "[" .. concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local b = self[_index_0]
|
|
|
|
_accum_0[_len_0] = as_nomsu(b)
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), ", ") .. "]"
|
|
|
|
end,
|
|
|
|
as_lua = function(self)
|
2019-01-22 16:15:25 -08:00
|
|
|
return "a_List{" .. concat((function()
|
2018-09-18 19:48:58 -07:00
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local b = self[_index_0]
|
|
|
|
_accum_0[_len_0] = as_lua(b)
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), ", ") .. "}"
|
|
|
|
end,
|
2018-08-29 19:38:14 -07:00
|
|
|
__lt = function(self, other)
|
|
|
|
assert(type(self) == 'table' and type(other) == 'table', "Incompatible types for comparison")
|
|
|
|
for i = 1, math.max(#self, #other) do
|
|
|
|
if not self[i] and other[i] then
|
|
|
|
return true
|
|
|
|
elseif self[i] and not other[i] then
|
|
|
|
return false
|
|
|
|
elseif self[i] < other[i] then
|
|
|
|
return true
|
|
|
|
elseif self[i] > other[i] then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end,
|
|
|
|
__le = function(self, other)
|
|
|
|
assert(type(self) == 'table' and type(other) == 'table', "Incompatible types for comparison")
|
|
|
|
for i = 1, math.max(#self, #other) do
|
|
|
|
if not self[i] and other[i] then
|
|
|
|
return true
|
|
|
|
elseif self[i] and not other[i] then
|
|
|
|
return false
|
|
|
|
elseif self[i] < other[i] then
|
|
|
|
return true
|
|
|
|
elseif self[i] > other[i] then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
__add = function(self, other)
|
2018-09-06 12:46:39 -07:00
|
|
|
local ret = List((function()
|
2018-08-29 19:38:14 -07:00
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local x = self[_index_0]
|
|
|
|
_accum_0[_len_0] = x
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)())
|
|
|
|
for _index_0 = 1, #other do
|
|
|
|
local x = other[_index_0]
|
|
|
|
insert(ret, x)
|
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end,
|
|
|
|
__index = {
|
2018-11-02 14:38:24 -07:00
|
|
|
add = insert,
|
|
|
|
append = insert,
|
|
|
|
add_1_at_index = function(t, x, i)
|
2018-08-29 19:38:14 -07:00
|
|
|
return insert(t, i, x)
|
|
|
|
end,
|
2018-11-02 14:38:24 -07:00
|
|
|
at_index_1_add = insert,
|
2018-08-29 19:38:14 -07:00
|
|
|
pop = remove,
|
|
|
|
remove_last = remove,
|
2018-11-02 14:38:24 -07:00
|
|
|
remove_index = remove,
|
2018-08-29 19:38:14 -07:00
|
|
|
last = (function(self)
|
|
|
|
return self[#self]
|
|
|
|
end),
|
|
|
|
first = (function(self)
|
|
|
|
return self[1]
|
|
|
|
end),
|
|
|
|
_1_st_to_last = nth_to_last,
|
|
|
|
_1_nd_to_last = nth_to_last,
|
|
|
|
_1_rd_to_last = nth_to_last,
|
|
|
|
_1_th_to_last = nth_to_last,
|
2018-09-10 15:55:34 -07:00
|
|
|
joined = function(self)
|
|
|
|
return table.concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local x = self[_index_0]
|
|
|
|
_accum_0[_len_0] = tostring(x)
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)())
|
|
|
|
end,
|
2018-11-02 14:38:24 -07:00
|
|
|
joined_with = function(self, glue)
|
2018-09-10 15:55:34 -07:00
|
|
|
return table.concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local x = self[_index_0]
|
|
|
|
_accum_0[_len_0] = tostring(x)
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), glue)
|
|
|
|
end,
|
2018-11-02 14:38:24 -07:00
|
|
|
has = function(self, item)
|
2018-08-29 19:38:14 -07:00
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local x = self[_index_0]
|
|
|
|
if x == item then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end,
|
2018-11-02 14:38:24 -07:00
|
|
|
remove = function(self, item)
|
2018-10-29 13:00:08 -07:00
|
|
|
for i, x in ipairs(self) do
|
|
|
|
if x == item then
|
|
|
|
remove(self, i)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
2018-11-02 14:38:24 -07:00
|
|
|
index_of = function(self, item)
|
2018-08-29 19:38:14 -07:00
|
|
|
for i, x in ipairs(self) do
|
|
|
|
if x == item then
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return nil
|
2018-09-26 12:45:08 -07:00
|
|
|
end,
|
2018-11-02 14:38:24 -07:00
|
|
|
from_1_to = function(self, start, stop)
|
2018-09-26 12:45:08 -07:00
|
|
|
local n = #self
|
2018-11-09 16:40:36 -08:00
|
|
|
if start < 0 then
|
2018-09-26 12:45:08 -07:00
|
|
|
start = (n + 1 - start)
|
|
|
|
end
|
2018-11-09 16:40:36 -08:00
|
|
|
if stop < 0 then
|
2018-09-26 12:45:08 -07:00
|
|
|
stop = (n + 1 - stop)
|
|
|
|
end
|
2018-11-09 16:40:36 -08:00
|
|
|
return List((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for i = start, stop do
|
|
|
|
_accum_0[_len_0] = self[i]
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)())
|
2019-01-30 15:19:38 -08:00
|
|
|
end,
|
2019-02-06 15:33:10 -08:00
|
|
|
from = function(self, start)
|
|
|
|
return self:from_1_to(start, -1)
|
|
|
|
end,
|
|
|
|
up_to = function(self, stop)
|
|
|
|
return self:from_1_to(1, stop)
|
|
|
|
end,
|
2019-02-02 19:31:40 -08:00
|
|
|
copy = function(self)
|
|
|
|
return List((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for i = 1, #self do
|
|
|
|
_accum_0[_len_0] = self[i]
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)())
|
|
|
|
end,
|
|
|
|
reverse = function(self)
|
|
|
|
local n = #self
|
|
|
|
for i = 1, math.floor(n / 2) do
|
|
|
|
self[i], self[n - i + 1] = self[n - i + 1], self[i]
|
|
|
|
end
|
|
|
|
end,
|
2019-01-30 15:19:38 -08:00
|
|
|
reversed = function(self)
|
|
|
|
return List((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for i = #self, 1, -1 do
|
|
|
|
_accum_0[_len_0] = self[i]
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)())
|
2019-02-02 19:31:40 -08:00
|
|
|
end,
|
|
|
|
sort = function(self)
|
|
|
|
return table.sort(self)
|
|
|
|
end,
|
|
|
|
sort_by = function(self, fn)
|
|
|
|
local keys = setmetatable({ }, {
|
|
|
|
__index = function(self, k)
|
|
|
|
local key = fn(k)
|
|
|
|
self[k] = key
|
|
|
|
return key
|
|
|
|
end
|
|
|
|
})
|
|
|
|
return table.sort(self, function(a, b)
|
|
|
|
return keys[a] <= keys[b]
|
|
|
|
end)
|
|
|
|
end,
|
|
|
|
sorted = function(self)
|
|
|
|
local c = self:copy()
|
|
|
|
c:sort()
|
|
|
|
return c
|
|
|
|
end,
|
|
|
|
sorted_by = function(self, fn)
|
|
|
|
local c = self:copy()
|
|
|
|
c:sort_by(fn)
|
|
|
|
return c
|
|
|
|
end,
|
|
|
|
filter_by = function(self, keep)
|
|
|
|
local deleted = 0
|
|
|
|
for i = 1, #self do
|
|
|
|
if not (keep(self[i])) then
|
|
|
|
deleted = deleted + 1
|
|
|
|
elseif deleted > 0 then
|
|
|
|
self[i - deleted] = self[i]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
for i = #self - deleted + 1, #self do
|
|
|
|
self[i] = nil
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
filtered_by = function(self, keep)
|
|
|
|
local c = self:copy()
|
|
|
|
c:filter_by(keep)
|
|
|
|
return c
|
2018-08-29 19:38:14 -07:00
|
|
|
end
|
2018-08-30 14:21:18 -07:00
|
|
|
},
|
|
|
|
__newindex = function(self, k, v)
|
|
|
|
assert(type(k) == 'number', "List indices must be numbers")
|
|
|
|
return rawset(self, k, v)
|
|
|
|
end
|
2018-08-29 19:38:14 -07:00
|
|
|
}
|
2018-09-28 22:15:24 -07:00
|
|
|
_list_mt.__index.as_lua = _list_mt.as_lua
|
|
|
|
_list_mt.__index.as_nomsu = _list_mt.as_nomsu
|
2019-03-09 15:53:14 -08:00
|
|
|
List = function(t, ...)
|
|
|
|
local l
|
2018-12-18 17:34:09 -08:00
|
|
|
if type(t) == 'table' then
|
2019-03-09 15:53:14 -08:00
|
|
|
l = setmetatable(t, _list_mt)
|
2018-12-18 17:34:09 -08:00
|
|
|
elseif type(t) == 'function' then
|
2019-03-09 15:53:14 -08:00
|
|
|
l = setmetatable({ }, _list_mt)
|
2018-12-18 17:34:09 -08:00
|
|
|
local add
|
|
|
|
add = function(...)
|
|
|
|
for i = 1, select('#', ...) do
|
|
|
|
l[#l + 1] = select(i, ...)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
t(add)
|
2019-03-09 15:53:14 -08:00
|
|
|
elseif type(t) == 'thread' then
|
|
|
|
l = setmetatable({ }, _list_mt)
|
|
|
|
for val in coroutine.wrap(t) do
|
|
|
|
l[#l + 1] = val
|
|
|
|
end
|
2018-12-18 17:34:09 -08:00
|
|
|
else
|
2019-03-09 15:53:14 -08:00
|
|
|
error("Unsupported List type: " .. type(t))
|
|
|
|
end
|
|
|
|
if select(1, ...) then
|
|
|
|
local _list_0 = List(...)
|
|
|
|
for _index_0 = 1, #_list_0 do
|
|
|
|
local x = _list_0[_index_0]
|
|
|
|
l[#l + 1] = x
|
|
|
|
end
|
2018-12-18 17:34:09 -08:00
|
|
|
end
|
2019-03-09 15:53:14 -08:00
|
|
|
return l
|
2018-08-29 19:38:14 -07:00
|
|
|
end
|
2019-02-02 19:31:40 -08:00
|
|
|
local compliments = setmetatable({ }, {
|
|
|
|
__mode = 'k'
|
|
|
|
})
|
|
|
|
_undict_mt = {
|
2019-02-02 19:33:14 -08:00
|
|
|
__type = "an Inverse Dict",
|
2019-02-02 19:31:40 -08:00
|
|
|
__index = function(self, k)
|
|
|
|
return not compliments[self][k] and true or nil
|
|
|
|
end,
|
|
|
|
__newindex = function(self, k, v)
|
|
|
|
if k then
|
|
|
|
compliments[self][k] = nil
|
|
|
|
else
|
|
|
|
compliments[self][k] = true
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
__eq = function(self, other)
|
|
|
|
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self)) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return compliments[self] == compliments[other]
|
|
|
|
end,
|
|
|
|
__len = function(self)
|
|
|
|
return math.huge
|
|
|
|
end,
|
|
|
|
__tostring = function(self)
|
|
|
|
return "~" .. _dict_mt.__tostring(compliments[self])
|
|
|
|
end,
|
|
|
|
as_nomsu = function(self)
|
|
|
|
return "~" .. _dict_mt.as_nomsu(compliments[self])
|
|
|
|
end,
|
|
|
|
as_lua = function(self)
|
|
|
|
return "~" .. __dict_mt.as_lua(compliments[self])
|
|
|
|
end,
|
|
|
|
__band = function(self, other)
|
|
|
|
if getmetatable(other) == _undict_mt then
|
|
|
|
return Undict(_dict_mt.__bor(compliments[self], compliments[other]))
|
|
|
|
else
|
|
|
|
return _dict_mt.__band(other, self)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
__bor = function(self, other)
|
|
|
|
if getmetatable(other) == _undict_mt then
|
|
|
|
return Undict(_dict_mt.__band(compliments[self], compliments[other]))
|
|
|
|
else
|
|
|
|
return Undict((function()
|
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(compliments[self]) do
|
|
|
|
if not other[k] then
|
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return _tbl_0
|
|
|
|
end)())
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
__bxor = function(self, other)
|
|
|
|
if getmetatable(other) == _undict_mt then
|
|
|
|
return _dict_mt.__bxor(compliments[self], compliments[other])
|
|
|
|
else
|
|
|
|
return Undict(_dict_mt.__band(other, self))
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
__bnot = function(self)
|
|
|
|
return Dict((function()
|
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(compliments[self]) do
|
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
|
|
|
return _tbl_0
|
|
|
|
end)())
|
|
|
|
end
|
|
|
|
}
|
|
|
|
Undict = function(d)
|
|
|
|
local u = setmetatable({ }, _undict_mt)
|
|
|
|
compliments[u] = Dict((function()
|
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(d) do
|
|
|
|
if v then
|
|
|
|
_tbl_0[k] = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return _tbl_0
|
|
|
|
end)())
|
|
|
|
return u
|
|
|
|
end
|
|
|
|
_dict_mt = {
|
2019-01-16 21:33:02 -08:00
|
|
|
__type = "a Dict",
|
2018-11-06 15:13:55 -08:00
|
|
|
__eq = function(self, other)
|
|
|
|
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self)) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
for k, v in pairs(self) do
|
|
|
|
if not (v == other[k]) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
for k, v in pairs(other) do
|
|
|
|
if not (v == self[k]) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
__len = function(self)
|
|
|
|
local n = 0
|
|
|
|
for _ in pairs(self) do
|
|
|
|
n = n + 1
|
|
|
|
end
|
|
|
|
return n
|
|
|
|
end,
|
2018-08-29 19:38:14 -07:00
|
|
|
__tostring = function(self)
|
|
|
|
return "{" .. concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for k, v in pairs(self) do
|
2019-02-02 19:31:40 -08:00
|
|
|
_accum_0[_len_0] = v == true and "." .. as_nomsu(k) or "." .. tostring(k) .. " = " .. tostring(v)
|
2018-09-18 19:48:58 -07:00
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), ", ") .. "}"
|
|
|
|
end,
|
|
|
|
as_nomsu = function(self)
|
|
|
|
return "{" .. concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for k, v in pairs(self) do
|
2019-02-02 19:31:40 -08:00
|
|
|
_accum_0[_len_0] = v == true and "." .. as_nomsu(k) or "." .. tostring(as_nomsu(k)) .. " = " .. tostring(as_nomsu(v))
|
2018-09-18 19:48:58 -07:00
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), ", ") .. "}"
|
|
|
|
end,
|
|
|
|
as_lua = function(self)
|
2019-01-22 16:15:25 -08:00
|
|
|
return "a_Dict{" .. concat((function()
|
2018-09-18 19:48:58 -07:00
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
for k, v in pairs(self) do
|
|
|
|
_accum_0[_len_0] = "[ " .. tostring(as_lua(k)) .. "]= " .. tostring(as_lua(v))
|
2018-08-29 19:38:14 -07:00
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), ", ") .. "}"
|
|
|
|
end,
|
2019-03-13 20:55:24 -07:00
|
|
|
__inext = function(self, key)
|
|
|
|
local nextkey, value = next(self, key)
|
|
|
|
if nextkey ~= nil then
|
|
|
|
return nextkey, Dict({
|
|
|
|
key = nextkey,
|
|
|
|
value = value
|
|
|
|
})
|
|
|
|
end
|
2019-02-02 19:31:40 -08:00
|
|
|
end,
|
2018-08-29 19:38:14 -07:00
|
|
|
__band = function(self, other)
|
2018-09-06 12:46:39 -07:00
|
|
|
return Dict((function()
|
2018-08-29 19:38:14 -07:00
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(self) do
|
2019-02-02 19:31:40 -08:00
|
|
|
if other[k] then
|
2018-08-29 19:38:14 -07:00
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return _tbl_0
|
|
|
|
end)())
|
|
|
|
end,
|
|
|
|
__bor = function(self, other)
|
2019-02-02 19:31:40 -08:00
|
|
|
if getmetatable(other) == _undict_mt then
|
|
|
|
return _undict_mt.__bor(other, self)
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
local ret = Dict((function()
|
2018-08-29 19:38:14 -07:00
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(self) do
|
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return _tbl_0
|
|
|
|
end)())
|
2018-08-29 19:38:14 -07:00
|
|
|
for k, v in pairs(other) do
|
|
|
|
if ret[k] == nil then
|
|
|
|
ret[k] = v
|
|
|
|
end
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return ret
|
2018-08-29 19:38:14 -07:00
|
|
|
end,
|
|
|
|
__bxor = function(self, other)
|
2019-02-02 19:31:40 -08:00
|
|
|
if getmetatable(other) == _undict_mt then
|
|
|
|
return _undict_mt.__bxor(other, self)
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
local ret = Dict((function()
|
2018-08-29 19:38:14 -07:00
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(self) do
|
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return _tbl_0
|
|
|
|
end)())
|
2018-08-29 19:38:14 -07:00
|
|
|
for k, v in pairs(other) do
|
|
|
|
if ret[k] == nil then
|
|
|
|
ret[k] = v
|
|
|
|
else
|
|
|
|
ret[k] = nil
|
|
|
|
end
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return ret
|
2018-08-29 19:38:14 -07:00
|
|
|
end,
|
2019-02-02 19:31:40 -08:00
|
|
|
__bnot = Undict,
|
2018-08-29 19:38:14 -07:00
|
|
|
__add = function(self, other)
|
2019-01-01 15:05:58 -08:00
|
|
|
local ret = Dict((function()
|
2018-08-29 19:38:14 -07:00
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(self) do
|
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return _tbl_0
|
|
|
|
end)())
|
2018-08-29 19:38:14 -07:00
|
|
|
for k, v in pairs(other) do
|
|
|
|
if ret[k] == nil then
|
|
|
|
ret[k] = v
|
|
|
|
else
|
|
|
|
ret[k] = ret[k] + v
|
|
|
|
end
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return ret
|
2018-08-29 19:38:14 -07:00
|
|
|
end,
|
|
|
|
__sub = function(self, other)
|
2019-01-01 15:05:58 -08:00
|
|
|
local ret = Dict((function()
|
2018-08-29 19:38:14 -07:00
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(self) do
|
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return _tbl_0
|
|
|
|
end)())
|
2018-08-29 19:38:14 -07:00
|
|
|
for k, v in pairs(other) do
|
|
|
|
if ret[k] == nil then
|
|
|
|
ret[k] = -v
|
|
|
|
else
|
|
|
|
ret[k] = ret[k] - v
|
|
|
|
end
|
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
return ret
|
2018-08-29 19:38:14 -07:00
|
|
|
end
|
|
|
|
}
|
2019-03-09 15:53:14 -08:00
|
|
|
Dict = function(t, more, ...)
|
|
|
|
local d
|
2018-12-18 17:34:09 -08:00
|
|
|
if type(t) == 'table' then
|
2019-03-09 15:53:14 -08:00
|
|
|
d = setmetatable(t, _dict_mt)
|
2018-12-18 17:34:09 -08:00
|
|
|
elseif type(t) == 'function' then
|
2019-03-09 15:53:14 -08:00
|
|
|
d = setmetatable({ }, _dict_mt)
|
2018-12-18 17:34:09 -08:00
|
|
|
local add
|
|
|
|
add = function(...)
|
|
|
|
for i = 1, select('#', ...) do
|
|
|
|
d[select(i, ...)] = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local add_1_eq_2
|
|
|
|
add_1_eq_2 = function(k, v)
|
|
|
|
d[k] = v
|
|
|
|
end
|
|
|
|
t(add, add_1_eq_2)
|
2019-03-09 15:53:14 -08:00
|
|
|
elseif type(t) == 'thread' then
|
|
|
|
d = setmetatable({ }, _dict_mt)
|
|
|
|
for k, v in coroutine.wrap(t) do
|
|
|
|
d[k] = v
|
|
|
|
end
|
2018-12-18 17:34:09 -08:00
|
|
|
else
|
2019-03-09 15:53:14 -08:00
|
|
|
error("Unsupported Dict type: " .. type(t))
|
|
|
|
end
|
|
|
|
if more then
|
|
|
|
for k, v in pairs(Dict(more, ...)) do
|
|
|
|
d[k] = v
|
|
|
|
end
|
2018-12-18 17:34:09 -08:00
|
|
|
end
|
2019-03-09 15:53:14 -08:00
|
|
|
return d
|
2018-08-29 19:38:14 -07:00
|
|
|
end
|
|
|
|
return {
|
2018-09-06 12:46:39 -07:00
|
|
|
List = List,
|
2019-03-13 20:55:24 -07:00
|
|
|
Dict = Dict
|
2018-08-29 19:38:14 -07:00
|
|
|
}
|