This tag refers to the table type in Lua that implements associative arrays.
Excerpt from Lua 5.3 manual: _G A global variable (not a function) that holds the global environment (see §2.2). Lua itself does …
lua global-variables environment lua-tableI need to convert a table into a comma separated list in order to save it to a text file. …
csv lua lua-tableI'd like to find out how much memory a Lua table is using - without iterating through the table contents …
memory-management lua lua-tableCould somebody explain to me why table.unpack() returns the first table element only when it is used in a …
lua lua-tableI am making a game using Lua and I need to use Breadth-first search to implement a fast path-finding algorithm …
lua queue path-finding breadth-first-search lua-tableI want to store a lua table where the keys are other lua tables. I know that this is possible …
lua hashtable lua-tableI am a newbie programmer, just starting out with lua and Defold, and basically I have a table called objects, …
lua lua-table defoldI have a new question for you all, I am wondering if you're able to do enumartions within Lua, I …
lua lua-table