( effect: Effect.Effect<A, E, R>, parentFiber: FiberRuntime<B, E2>, parentRuntimeFlags: RuntimeFlags.RuntimeFlags, overrideScope: fiberScope.FiberScope | null = null )
| 2445 | |
| 2446 | /** @internal */ |
| 2447 | export const unsafeFork = <A, E, R, E2, B>( |
| 2448 | effect: Effect.Effect<A, E, R>, |
| 2449 | parentFiber: FiberRuntime<B, E2>, |
| 2450 | parentRuntimeFlags: RuntimeFlags.RuntimeFlags, |
| 2451 | overrideScope: fiberScope.FiberScope | null = null |
| 2452 | ): FiberRuntime<A, E> => { |
| 2453 | const childFiber = unsafeMakeChildFiber(effect, parentFiber, parentRuntimeFlags, overrideScope) |
| 2454 | childFiber.resume(effect) |
| 2455 | return childFiber |
| 2456 | } |
| 2457 | |
| 2458 | /** @internal */ |
| 2459 | export const unsafeForkUnstarted = <A, E, R, E2, B>( |
no test coverage detected