Difference between revisions of "Ipairs"

From OpenEUO
Jump to: navigation, search
(Created page with " ipairs (t) Returns three values: an iterator function, the table t, and 0, so that the construction for i,v in ipairs(t) do body end will iterate over the pairs (1,t[1])...")
 
 
Line 6: Line 6:
  
 
will iterate over the pairs (1,t[1]), (2,t[2]), ···, up to the first integer key absent from the table.
 
will iterate over the pairs (1,t[1]), (2,t[2]), ···, up to the first integer key absent from the table.
 +
 +
[[Next]]
 +
 +
[[Pairs]]

Latest revision as of 18:56, 7 October 2010

ipairs (t)

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

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

will iterate over the pairs (1,t[1]), (2,t[2]), ···, up to the first integer key absent from the table.

Next

Pairs