This tag refers to the table type in Lua that implements associative arrays.
I'm trying to load tables from Lua to C++ but I'm having trouble getting it right. I'm getting through the …
c++ lua lua-tablei am having a table in lua test = {1,2,4,2,3,4,2,3,4,"A", "B", "A"} I want to remove all duplicate elements in table. …
lua lua-tableI may have missed this, but is there a built-in method for serializing/deserializing lua tables to text files and …
serialization lua coronasdk lua-tableI am currently working in torch to implement a random shuffle (on the rows, the first dimension in this case) …
lua permutation lua-table torch tensorHere's an example local query = {} query['count'] = 1 query['query'] = 2 for k,v in pairs(query) do print(k) end The …
lua lua-table