Proper Table Cleanup

I understand that you can use "table.remove(table)", when i do this, does it also destroy and nil all variables inside the table for cleanup? If i have several tables in one MAIN table, and i do table.remove(maintable), will all the sub tables inside of MAIN be destroyed as well?

Thank you

1
2
3
4
5
6
7
8
9
10
11
12
local t = {
 
r = {
var = "one"
},
l = "two"
}
 
table.remove(t)
for i,v in pairs(t) do
print(i,v)
end
views:1404 update:2012/1/1 13:29:50
corona forums © 2003-2011