mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.cache: Add method for iterating over values
This commit is contained in:
parent
4bacbb7d71
commit
8fb50705d1
1 changed files with 12 additions and 0 deletions
|
@ -88,6 +88,18 @@ function cache_methods:items()
|
|||
end
|
||||
end
|
||||
|
||||
function cache_methods:values()
|
||||
local m = self._head;
|
||||
return function ()
|
||||
if not m then
|
||||
return;
|
||||
end
|
||||
local v = m.value;
|
||||
m = m.next;
|
||||
return v;
|
||||
end
|
||||
end
|
||||
|
||||
function cache_methods:count()
|
||||
return self._count;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue