Table.foreachi

From GiderosMobile
Revision as of 23:11, 20 January 2023 by MoKaLux (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2022.3<br/> '''Class:''' table<br/> === Description === Iterates over the provided table, passing the index and value of each ite...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2022.3
Class: table

Description

Iterates over the provided table, passing the index and value of each iteration over to the provided function.

table.foreachi(t,function)

Parameters

t: (table) the table to be iterated over
function: (function) the function that will be used for the iteration. This function will receive 2 arguments for each iteration, where the 1st argument is the index, and the 2nd argument is the value