( self: Effect.Effect<Channel.Channel<OutElem, InElem, OutErr, InErr, OutDone, InDone, Env>, E, R> )
| 2312 | |
| 2313 | /** @internal */ |
| 2314 | export const unwrapScoped = <OutElem, InElem, OutErr, InErr, OutDone, InDone, Env, E, R>( |
| 2315 | self: Effect.Effect<Channel.Channel<OutElem, InElem, OutErr, InErr, OutDone, InDone, Env>, E, R> |
| 2316 | ): Channel.Channel<OutElem, InElem, E | OutErr, InErr, OutDone, InDone, Env | Exclude<R, Scope.Scope>> => |
| 2317 | core.concatAllWith( |
| 2318 | scoped(self), |
| 2319 | (d, _) => d, |
| 2320 | (d, _) => d |
| 2321 | ) |
| 2322 | |
| 2323 | /** @internal */ |
| 2324 | export const unwrapScopedWith = <OutElem, InElem, OutErr, InErr, OutDone, InDone, Env, E, R>( |
no test coverage detected