2,875
edits
No edit summary |
No edit summary |
||
Line 166: | Line 166: | ||
end | end | ||
function funlist: | function funlist:concat(tbl) | ||
assert( | assert(type(tbl) == 'table') | ||
for k, v in pairs(tbl) do | |||
self.mytable[k] = v | |||
end | |||
return self | |||
end | end | ||
edits