mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Add :reverse() method
This commit is contained in:
parent
5ce49a3b6c
commit
cb2b5ec86f
1 changed files with 8 additions and 0 deletions
|
@ -44,4 +44,12 @@ function array:shuffle()
|
|||
end
|
||||
end
|
||||
|
||||
function array:reverse()
|
||||
local len = #self-1;
|
||||
for i=len,1,-1 do
|
||||
self:push(self[i]);
|
||||
self:pop(i);
|
||||
end
|
||||
end
|
||||
|
||||
_G.array = array
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue