Merge 0.12->trunk

This commit is contained in:
Kim Alvefur 2023-06-10 13:06:05 +02:00
commit 0d6c625f93
2 changed files with 3 additions and 1 deletions

View file

@ -36,6 +36,8 @@ local function new_array(self, t, _s, _var)
return setmetatable(t or {}, array_mt);
end
array.new = new_array;
function array_mt.__add(a1, a2)
local res = new_array();
return res:append(a1):append(a2);