This tag refers to the table type in Lua that implements associative arrays.
I don't understand the rationale behind the decision of this part of Lua. Why does indexing start at 1? I have …
arrays lua lua-tableI need to know how to retrieve the key set of a table in lua. for example, if I have …
lua lua-table keysetHow do I delete all elements inside a Lua table? I don't want to do: t = {} table.insert(t, 1) t = {} …
lua lua-tableI have a Lua table that I am trying to sort. The table's format is as follows: tableOfKills[PlayerName] = NumberOfKills …
sorting lua lua-tableI am wanting to convert a 2d lua table into a string, then after converting it to a string convert …
serialization lua lua-tableI want to convert string text to table and this text must be divided on characters. Every character must be …
string lua lua-tableIn Lua, there seem to be two ways of appending an element to an array: table.insert(t, i) and …
lua lua-tableAs the title says, what function or check can I do to find out if a lua element is a …
lua lua-tableI'm trying to call a function in Lua that accepts multiple 'number' arguments function addShape(x1, y1, x2, y2 ... xn, …
lua lua-table