mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Just use table.remove as array:pop()
This commit is contained in:
parent
1951ac9ea1
commit
f4d50275c9
1 changed files with 1 additions and 5 deletions
|
@ -128,11 +128,7 @@ function array_methods:push(x)
|
|||
return self;
|
||||
end
|
||||
|
||||
function array_methods:pop(x)
|
||||
local v = self[x];
|
||||
t_remove(self, x);
|
||||
return v;
|
||||
end
|
||||
array_methods.pop = t_remove;
|
||||
|
||||
function array_methods:concat(sep)
|
||||
return t_concat(array.map(self, tostring), sep);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue