mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.iterators: Add head() iterator, to return the first n items
This commit is contained in:
parent
20984a8ffb
commit
bcb552cdc4
1 changed files with 12 additions and 0 deletions
|
@ -78,6 +78,18 @@ function count(f, s, var)
|
|||
return x;
|
||||
end
|
||||
|
||||
-- Return the first n items an iterator returns
|
||||
function head(n, f, s, var)
|
||||
local c = 0;
|
||||
return function (s, var)
|
||||
if c >= n then
|
||||
return nil;
|
||||
end
|
||||
c = c + 1;
|
||||
return f(s, var);
|
||||
end, s;
|
||||
end
|
||||
|
||||
-- Convert the values returned by an iterator to an array
|
||||
function it2array(f, s, var)
|
||||
local t, var = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue