( f: (isInterruptible: boolean) => Effect.Effect<A, E, R> )
| 650 | |
| 651 | /* @internal */ |
| 652 | export const checkInterruptible = <A, E, R>( |
| 653 | f: (isInterruptible: boolean) => Effect.Effect<A, E, R> |
| 654 | ): Effect.Effect<A, E, R> => withFiberRuntime((_, status) => f(runtimeFlags_.interruption(status.runtimeFlags))) |
| 655 | |
| 656 | const originalSymbol = Symbol.for("effect/OriginalAnnotation") |
| 657 |
nothing calls this directly
no test coverage detected