getBuiltinFunction

Returns an object, which contains the description, parameters and return-type of the given function. Throws an exception when the function do not exists.

getBuiltinFunction(name) → returns any

This function requires Lucee.  Not supported on Adobe ColdFusion, etc.

Argument Reference

name string
Required

Name of the function.

Examples
Sample code invoking the getBuiltinFunction function

Dump the StructKeyExists-function to show information about this function.

dump(getBuiltinFunction("StructKeyExists"));

Fork me on GitHub