util.array: Just use table.remove as array:pop()

This commit is contained in:
Kim Alvefur 2015-12-23 08:39:22 +01:00
parent 1951ac9ea1
commit f4d50275c9

View file

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