mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.array: Fix array.collect() for iterators that expect initial value of var to be preserved
This commit is contained in:
parent
40a31d93d6
commit
63d6d1a502
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ array_methods.length = function (t) return #t; end
|
||||||
|
|
||||||
--- These methods always create a new array
|
--- These methods always create a new array
|
||||||
function array.collect(f, s, var)
|
function array.collect(f, s, var)
|
||||||
local t, var = {};
|
local t = {};
|
||||||
while true do
|
while true do
|
||||||
var = f(s, var);
|
var = f(s, var);
|
||||||
if var == nil then break; end
|
if var == nil then break; end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue