util.queue: Add 'consume()' convenience iterator

This commit is contained in:
Matthew Wild 2019-03-23 08:47:55 +00:00
parent 95314bb2be
commit a274eacbbc
2 changed files with 40 additions and 0 deletions

View file

@ -64,6 +64,9 @@ local function new(size, allow_wrapping)
return pos+1, t._items[read_pos];
end, self, 0;
end;
consume = function (self)
return self.pop, self;
end;
};
end