Signature: fiber_yield(value: any) -> any
Description: Yields control to the fiber scheduler with an optional value.
Parameters #
- value (any): The value to yield
Returns: any
Example #
let result = fiber_yield(42)
Yields control to the fiber scheduler with an optional value.