Added comprehension form to containers, e.g. List(function(add) add(5)
end)
This commit is contained in:
parent
79881757fb
commit
908243ba21
@ -235,7 +235,21 @@ local _list_mt = {
|
|||||||
_list_mt.__index.as_lua = _list_mt.as_lua
|
_list_mt.__index.as_lua = _list_mt.as_lua
|
||||||
_list_mt.__index.as_nomsu = _list_mt.as_nomsu
|
_list_mt.__index.as_nomsu = _list_mt.as_nomsu
|
||||||
List = function(t)
|
List = function(t)
|
||||||
|
if type(t) == 'table' then
|
||||||
return setmetatable(t, _list_mt)
|
return setmetatable(t, _list_mt)
|
||||||
|
elseif type(t) == 'function' then
|
||||||
|
local l = setmetatable({ }, _list_mt)
|
||||||
|
local add
|
||||||
|
add = function(...)
|
||||||
|
for i = 1, select('#', ...) do
|
||||||
|
l[#l + 1] = select(i, ...)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
t(add)
|
||||||
|
return l
|
||||||
|
else
|
||||||
|
return error("Unsupported List type: " .. type(t))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
local walk_items
|
local walk_items
|
||||||
walk_items = function(self, i)
|
walk_items = function(self, i)
|
||||||
@ -396,7 +410,25 @@ local _dict_mt = {
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
Dict = function(t)
|
Dict = function(t)
|
||||||
|
if type(t) == 'table' then
|
||||||
return setmetatable(t, _dict_mt)
|
return setmetatable(t, _dict_mt)
|
||||||
|
elseif type(t) == 'function' then
|
||||||
|
local d = setmetatable({ }, _dict_mt)
|
||||||
|
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)
|
||||||
|
return d
|
||||||
|
else
|
||||||
|
return error("Unsupported Dict type: " .. type(t))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
for i, entry in ipairs(Dict({
|
for i, entry in ipairs(Dict({
|
||||||
x = 99
|
x = 99
|
||||||
|
@ -95,7 +95,16 @@ _list_mt =
|
|||||||
_list_mt.__index.as_lua = _list_mt.as_lua
|
_list_mt.__index.as_lua = _list_mt.as_lua
|
||||||
_list_mt.__index.as_nomsu = _list_mt.as_nomsu
|
_list_mt.__index.as_nomsu = _list_mt.as_nomsu
|
||||||
|
|
||||||
List = (t)-> setmetatable(t, _list_mt)
|
List = (t)->
|
||||||
|
if type(t) == 'table'
|
||||||
|
return setmetatable(t, _list_mt)
|
||||||
|
elseif type(t) == 'function'
|
||||||
|
l = setmetatable({}, _list_mt)
|
||||||
|
add = (...)->
|
||||||
|
for i=1,select('#',...) do l[#l+1] = select(i,...)
|
||||||
|
t(add)
|
||||||
|
return l
|
||||||
|
else error("Unsupported List type: "..type(t))
|
||||||
|
|
||||||
walk_items = (i)=>
|
walk_items = (i)=>
|
||||||
i = i + 1
|
i = i + 1
|
||||||
@ -150,7 +159,17 @@ _dict_mt =
|
|||||||
if ret[k] == nil then ret[k] = -v
|
if ret[k] == nil then ret[k] = -v
|
||||||
else ret[k] -= v
|
else ret[k] -= v
|
||||||
return Dict(ret)
|
return Dict(ret)
|
||||||
Dict = (t)-> setmetatable(t, _dict_mt)
|
Dict = (t)->
|
||||||
|
if type(t) == 'table'
|
||||||
|
return setmetatable(t, _dict_mt)
|
||||||
|
elseif type(t) == 'function'
|
||||||
|
d = setmetatable({}, _dict_mt)
|
||||||
|
add = (...)->
|
||||||
|
for i=1,select('#',...) do d[select(i,...)] = true
|
||||||
|
add_1_eq_2 = (k, v)-> d[k] = v
|
||||||
|
t(add, add_1_eq_2)
|
||||||
|
return d
|
||||||
|
else error("Unsupported Dict type: "..type(t))
|
||||||
|
|
||||||
for i,entry in ipairs(Dict({x:99}))
|
for i,entry in ipairs(Dict({x:99}))
|
||||||
assert(i == 1 and entry.key == "x" and entry.value == 99, "ipairs compatibility issue")
|
assert(i == 1 and entry.key == "x" and entry.value == 99, "ipairs compatibility issue")
|
||||||
|
Loading…
Reference in New Issue
Block a user