fxSetFunctionResolver function

void fxSetFunctionResolver(
  1. FunctionResolver functionResolver
)

If there is a function witch the internal functions doesn't have. You can custom your own function by set a FunctionResolver.

Implementation

void fxSetFunctionResolver(FunctionResolver functionResolver) {
  Resolver.instance.functionApply = functionResolver;
}