mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Add array:append() method, to append a new array to an existing one
This commit is contained in:
parent
0119d74802
commit
72331edf3e
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue