Just use default ipairs
This commit is contained in:
parent
705ad20481
commit
dd04c0c449
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user