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)
|
function Children:with(elementType)
|
||||||
local propSelf = self
|
local propSelf = self
|
||||||
function elementType:_iterateChildren(opts)
|
function elementType:_iterateChildren(opts)
|
||||||
local tbl = propSelf:with(self)
|
return ipairs(propSelf:getState(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
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function elementType:childCount()
|
function elementType:childCount()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user