This commit is contained in:
Manuel Simon Hirsig
2016-08-31 01:26:59 +02:00
parent 8753016de1
commit 00a1e7a897
+4 -4
View File
@@ -68,15 +68,15 @@ function public.tt.get()
end
do
local function modifier_mt(f)
local function mt(f)
local function apply(self, value)
recycle(self)
return f(value)
return type(value) == 'table' and f(value) or value
end
return {__call=apply, __sub=apply}
end
do
local mt = modifier_mt(function(t) tmp[t] = true; return t end)
local mt = mt(function(t) tmp[t] = true; return t end)
public.temp
{
get = function() return setmetatable(table(), mt) end,
@@ -84,7 +84,7 @@ do
}
end
do
local mt = modifier_mt(function(t) tmp[t] = nil; return t end)
local mt = mt(function(t) tmp[t] = nil; return t end)
public.perm
{
get = function() return setmetatable(table(), mt) end,