util.iterators: Add iterator wrapper that works like select(n, ...) applied to original iterator

This commit is contained in:
Kim Alvefur 2016-04-15 13:20:31 +02:00
parent 8fb50705d1
commit 3f87977ddb

View file

@ -54,6 +54,15 @@ function it.values(t)
end, t;
end
-- Iterate over the n:th return value
function it.select(n, f, s, var)
return function (_s)
local ret = pack(f(_s, var));
var = ret[1];
return ret[n];
end, s, var;
end
-- Given an iterator, iterate only over unique items
function it.unique(f, s, var)
local set = {};