util.array: Accept an iterator to the array constructor

This commit is contained in:
Matthew Wild 2012-08-08 11:49:31 +01:00
parent 9735264a8d
commit 65fafa7b63

View file

@ -19,7 +19,10 @@ local array_base = {};
local array_methods = {};
local array_mt = { __index = array_methods, __tostring = function (array) return array:concat(", "); end };
local function new_array(_, t)
local function new_array(self, t, _s, _var)
if type(t) == "function" then -- Assume iterator
t = self.collect(t, _s, _var);
end
return setmetatable(t or {}, array_mt);
end