Meta.functionExists
Meta.functionExists($functionName) -> boolean
Description
Check whether a user function is defined in the current file.
Meta.functionExists('doSomething') //= true Meta.functionExists('doSomethingElse') //= false fun doSomething { ... }