I want to achieve this (import functions from util table as local values):
function blah ()
local x = util.x
local y = util.y
...
end
without having to reference each function explicitly, e.g. something like:
function blah()
for name,f in util do
???
end
end
Unfortunately there is no local table that I could set the way one can set _G['function_name_as_string']. Ideas?