mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.iterators: Add ripairs() (ipairs() in reverse) (thanks Maranda)
This commit is contained in:
parent
ef9b86202e
commit
8d41687872
1 changed files with 5 additions and 0 deletions
|
@ -122,6 +122,11 @@ function it.tail(n, f, s, var)
|
|||
--return reverse(head(n, reverse(f, s, var)));
|
||||
end
|
||||
|
||||
local function _ripairs_iter(t, key) if key > 1 then return key-1, t[key-1]; end end
|
||||
function it.ripairs(t)
|
||||
return _ripairs_iter, t, #t+1;
|
||||
end
|
||||
|
||||
local function _range_iter(max, curr) if curr < max then return curr + 1; end end
|
||||
function it.range(x, y)
|
||||
if not y then x, y = 1, x; end -- Default to 1..x if y not given
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue