| 5359 | readonly uninterruptible?: boolean | "inherit" |
| 5360 | } |
| 5361 | ): Effect.Effect<Fiber.Fiber<A, E>, never, R | Scope.Scope> => flatMap(scope, (scope) => forkIn(self, scope, options))) |
| 5362 | |
| 5363 | // ---------------------------------------------------------------------------- |
| 5364 | // execution |
| 5365 | // ---------------------------------------------------------------------------- |
| 5366 | |
| 5367 | /** @internal */ |
| 5368 | export const runForkWith = <R>(context: Context.Context<R>) => |
| 5369 | <A, E>( |
| 5370 | effect: Effect.Effect<A, E, R>, |
| 5371 | options?: Effect.RunOptions | undefined |