Binds a function to this execution context.
Returns a new function that, when called, executes the original function within this context. Useful for passing context-bound functions to callbacks, event handlers, or async operations.
A new function that accepts the same arguments and runs within this context
Executes a function within this execution context.
The function runs with this context active, making all stored context values accessible to the function and any functions it calls.
The return value of the executed function
IMPORT_PATH:
"@daiso-tech/core/execution-context/contracts"Base contract for execution context operations.
Provides methods for executing code within an execution context, ensuring context values are accessible during execution.