Difference between revisions of "Pairs"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 9: | Line 9: | ||
will iterate over any key pairs (indexed or associative) even with nil values. | will iterate over any key pairs (indexed or associative) even with nil values. | ||
− | < | + | <syntaxhighlight lang="lua"> |
(function), (table), (nil) = pairs(t) | (function), (table), (nil) = pairs(t) | ||
</source> | </source> |
Revision as of 14:30, 13 July 2023
Available since: Gideros 2011.6
Class: (global)
Description
Returns three values: an iterator function, the table t, and nil, so that the construction:
for i,v in pairs(t) do body end
will iterate over any key pairs (indexed or associative) even with nil values. <syntaxhighlight lang="lua"> (function), (table), (nil) = pairs(t) </source>
Parameters
t: (table) table to iterate
Return values
Returns (function) iterator function
Returns (table) provided table
Returns (nil) nil value