util.iterators: Add head() iterator, to return the first n items

This commit is contained in:
Matthew Wild 2009-08-10 15:07:32 +01:00
parent 20984a8ffb
commit bcb552cdc4

View file

@ -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 = {};