v50 Steam/Premium information for editors
  • v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
  • Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.

Module:MakeParserFunctions

From Dwarf Fortress Wiki
Revision as of 06:44, 26 November 2022 by Lethosor (talk | contribs) (create)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This module takes a table of functions that take string parameters and returns a table of functions that takes "frame" parameters and passes through their "args" to the original functions as positional arguments.


return function(env)
	local out = {}
	for k, v in pairs(env) do
		if type(v) == 'function' then
			out[k] = function(frame)
				return v(unpack(frame.args))
			end
		end
	end
	return out
end