-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference BindFuncNode
S2NX7 edited this page Sep 30, 2025
·
2 revisions
The Bind Func binds one IFunc delegate to another. This allows you to chain or redirect function delegates, so that invoking a will call b and return its result.
Input Ports
- enter : Control flow entry point. Executes the binding operation.
-
a : The target
IFuncdelegate to bind to. -
b : The
IFuncdelegate being bound.
Output Ports
- exit : Control flow output triggered after the binding is completed.