util.array: Add :reverse() method

This commit is contained in:
Matthew Wild 2009-03-29 13:50:59 +01:00
parent 5ce49a3b6c
commit cb2b5ec86f

View file

@ -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