ipairs()

ipairs (t)

Returns three values (an iterator function, the table t, and 0) so that the construction

1
for i,v in ipairs(t) do body end

will iterate over the key–value pairs (1,t[1]), (2,t[2]), ..., up to the first nil value.

doc_lua
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.