WoW:API tinsert: Difference between revisions

11 bytes removed ,  25 March 2010
{{luaapi}}
(Speed example (tinsert is slooow))
({{luaapi}})
Line 1: Line 1:
{{:Lua/Libshortcut|tinsert|table.insert}}
{{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]]
{{LUA}}