Is it possible to list all the functions of a table?
snippet in lua
Is it possible to list all the functions of a table?
user8449
for i,v in pairs(table_here) do
if type(v) == "function" then
print(i,v,debug.getinfo(v))
end
end