(self: Fiber.Fiber<A, E>)
| 3491 | |
| 3492 | /* @internal */ |
| 3493 | export const fiberScoped = <A, E>(self: Fiber.Fiber<A, E>): Effect.Effect<Fiber.Fiber<A, E>, never, Scope.Scope> => |
| 3494 | acquireRelease(core.succeed(self), core.interruptFiber) |
| 3495 | |
| 3496 | // |
| 3497 | // circular race |
nothing calls this directly
no test coverage detected