mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.iterators: Add skip() to skip the first n items of an iterator
This commit is contained in:
parent
143af24d62
commit
9a9e9b1c1a
1 changed files with 9 additions and 0 deletions
|
@ -90,6 +90,15 @@ function head(n, f, s, var)
|
||||||
end, s;
|
end, s;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Skip the first n items an iterator returns
|
||||||
|
function skip(n, f, s, var)
|
||||||
|
for i=1,n do
|
||||||
|
var = f(s, var);
|
||||||
|
end
|
||||||
|
return f, s, var;
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Return the last n items an iterator returns
|
||||||
function tail(n, f, s, var)
|
function tail(n, f, s, var)
|
||||||
local results, count = {}, 0;
|
local results, count = {}, 0;
|
||||||
while true do
|
while true do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue