( f: (scope: Scope.Scope) => Effect.Effect<Channel.Channel<OutElem, InElem, OutErr, InErr, OutDone, InDone, Env>, E, R> )
| 2322 | |
| 2323 | /** @internal */ |
| 2324 | export const unwrapScopedWith = <OutElem, InElem, OutErr, InErr, OutDone, InDone, Env, E, R>( |
| 2325 | f: (scope: Scope.Scope) => Effect.Effect<Channel.Channel<OutElem, InElem, OutErr, InErr, OutDone, InDone, Env>, E, R> |
| 2326 | ): Channel.Channel<OutElem, InElem, E | OutErr, InErr, OutDone, InDone, R | Env> => |
| 2327 | core.concatAllWith( |
| 2328 | scopedWith(f), |
| 2329 | (d, _) => d, |
| 2330 | (d, _) => d |
| 2331 | ) |
| 2332 | |
| 2333 | /** @internal */ |
| 2334 | export const updateService = dual< |
no test coverage detected