aboutsummaryrefslogtreecommitdiffstats
path: root/util/iterators.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/iterators.lua')
-rw-r--r--util/iterators.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/util/iterators.lua b/util/iterators.lua
index dc692d64..2a87e97a 100644
--- a/util/iterators.lua
+++ b/util/iterators.lua
@@ -120,6 +120,12 @@ function tail(n, f, s, var)
--return reverse(head(n, reverse(f, s, var)));
end
+local function _range_iter(max, curr) if curr < max then return curr + 1; end end
+function range(x, y)
+ if not y then x, y = 1, x; end -- Default to 1..x if y not given
+ return _range_iter, y, x-1;
+end
+
-- Convert the values returned by an iterator to an array
function it2array(f, s, var)
local t, var = {};
@@ -142,3 +148,4 @@ function it2table(f, s, var)
end
return t;
end
+