mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.queue: Update :items() to consistently use private data directly
It will perform better this way, and we were accessing private variables already within the iterator. Replaces 3eea63a68e0f
This commit is contained in:
parent
de72422137
commit
e5d74b77ae
1 changed files with 4 additions and 5 deletions
|
@ -52,16 +52,15 @@ local function new(size, allow_wrapping)
|
||||||
return t[tail];
|
return t[tail];
|
||||||
end;
|
end;
|
||||||
items = function (self)
|
items = function (self)
|
||||||
--luacheck: ignore 431/t
|
return function (_, pos)
|
||||||
return function (t, pos)
|
if pos >= items then
|
||||||
if pos >= t:count() then
|
|
||||||
return nil;
|
return nil;
|
||||||
end
|
end
|
||||||
local read_pos = tail + pos;
|
local read_pos = tail + pos;
|
||||||
if read_pos > t.size then
|
if read_pos > self.size then
|
||||||
read_pos = (read_pos%size);
|
read_pos = (read_pos%size);
|
||||||
end
|
end
|
||||||
return pos+1, t._items[read_pos];
|
return pos+1, t[read_pos];
|
||||||
end, self, 0;
|
end, self, 0;
|
||||||
end;
|
end;
|
||||||
consume = function (self)
|
consume = function (self)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue