Script Function ReferenceFunction Reference >Script Function Reference >Function Manipulation>getFunctiongetFunctiongetFunction will retrieve information for a function defined in the calculator.
getFunction(name)
Parametersname is a string with the name for the function to retrieveReturn ValuegetFunction returns information for the function specified by name in a function table format. If the function is not defined a nil is returned.Examplefunction example() fn = getFunction("dist") r = evalFunction(fn, 3, 4) outputString("r("..fn.params..")="..r.."\n") end |