Fix reverse indexed iterations

This commit is contained in:
Gabriel Tofvesson 2024-10-16 00:41:04 +02:00
parent ccb2134c2f
commit e193427e4c

View File

@ -13,11 +13,11 @@ function Children:with(elementType)
function elementType:_iterateChildrenReversed()
local children = self:_children()
return function(tbl, idx)
if idx < 1 then
if idx <= 1 then
return nil, nil
end
return idx - 1, tbl[idx]
end, children, #children
return idx - 1, tbl[idx - 1]
end, children, #children + 1
end
function elementType:_children()