table.insert (table, [pos,] value)

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 (see §2.5.5), so that a call table.insert(t,x) inserts x at the end of table t.

EVERYTHING
Table Manipulation
table.concat
table.insert
table.maxn
table.remove
table.sort

[ ? | | @ ]