Just use default ipairs

This commit is contained in:
Gabriel Tofvesson 2024-10-09 23:14:08 +02:00
parent 705ad20481
commit dd04c0c449

View File

@ -6,14 +6,7 @@ local Children = Prop:new{ defaultState = {}, uid = "CHILDREN" }
function Children:with(elementType)
local propSelf = self
function elementType:_iterateChildren(opts)
local tbl = propSelf:with(self)
local start, finish = ((opts and opts.from) or 1) - 1, (opts and opts.to) or #tbl
return function(t, i)
if i > finish then
return nil, nil
end
return i + 1, t[i + 1]
end, tbl, start
return ipairs(propSelf:getState(self))
end
function elementType:childCount()