util.array: Fix array.collect() for iterators that expect initial value of var to be preserved

This commit is contained in:
Matthew Wild 2011-09-25 00:21:22 +01:00
parent 40a31d93d6
commit 63d6d1a502

View file

@ -98,7 +98,7 @@ array_methods.length = function (t) return #t; end
--- These methods always create a new array
function array.collect(f, s, var)
local t, var = {};
local t = {};
while true do
var = f(s, var);
if var == nil then break; end