{{luaapi}}
(Speed example (tinsert is slooow)) |
({{luaapi}}) |
||
| Line 1: | Line 1: | ||
{{ | {{luaapi}} | ||
From [http://lua-users.org/wiki/TableLibraryTutorial TableLibraryTutorial] of lua-users.org. | From [http://lua-users.org/wiki/TableLibraryTutorial TableLibraryTutorial] of lua-users.org. | ||
table.insert(table, [pos,] value) | table.insert(table, [pos,] value) | ||
tinsert(table[, pos], value) | |||
Insert a given value into a table. If a position is given insert the value before the element currently at that position: | Insert a given value into a table. If a position is given insert the value before the element currently at that position: | ||
| Line 76: | Line 77: | ||
== See Also == | == See Also == | ||
* [[tinsertbeforeval]] | * [[tinsertbeforeval]] | ||