util.array: Add array:append() method, to append a new array to an existing one

This commit is contained in:
Matthew Wild 2009-06-20 22:43:54 +01:00
parent 0119d74802
commit 72331edf3e

View file

@ -52,6 +52,14 @@ function array:reverse()
end
end
function array:append(array)
local len,len2 = #self, #array;
for i=1,len2 do
self[len+i] = array[i];
end
return self;
end
function array.collect(f, s, var)
local t, var = {};
while true do