mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Accept an iterator to the array constructor
This commit is contained in:
parent
9735264a8d
commit
65fafa7b63
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue