(self: Fiber.Fiber<A, E>)
| 3483 | |
| 3484 | /* @internal */ |
| 3485 | export const fiberInterruptFork = <A, E>(self: Fiber.Fiber<A, E>): Effect.Effect<void> => |
| 3486 | core.asVoid(forkDaemon(core.interruptFiber(self))) |
| 3487 | |
| 3488 | /* @internal */ |
| 3489 | export const fiberJoinAll = <A, E>(fibers: Iterable<Fiber.Fiber<A, E>>): Effect.Effect<Array<A>, E> => |
nothing calls this directly
no test coverage detected
searching dependent graphs…