Table.insert

From GiderosMobile
Revision as of 11:04, 23 August 2018 by Hgy29 (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Inserts element value at position pos in table, shifting up other elements to open space, if necessary...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2011.6

Description

Inserts element value at position pos in table, shifting up other elements to open space, if necessary. The default value for pos is n+1, where n is the length of the table, so that a call table.insert(t,x) inserts x at the end of table t.

= table.insert(tableposvalue,)

'table: (table) table where to insert new element '
pos: (number) index where to insert new element optional
value: (any) value to insert in table optional