(self: Deferred.Deferred<A, E>)
| 2947 | |
| 2948 | /* @internal */ |
| 2949 | export const deferredInterrupt = <A, E>(self: Deferred.Deferred<A, E>): Effect.Effect<boolean> => |
| 2950 | flatMap(fiberId, (fiberId) => deferredCompleteWith(self, interruptWith(fiberId))) |
| 2951 | |
| 2952 | /* @internal */ |
| 2953 | export const deferredInterruptWith = dual< |
nothing calls this directly
no test coverage detected