( f: (scope: Scope.Scope) => Effect.Effect<Stream.Stream<A, E2, R2>, E, R> )
| 7459 | |
| 7460 | /** @internal */ |
| 7461 | export const unwrapScopedWith = <A, E2, R2, E, R>( |
| 7462 | f: (scope: Scope.Scope) => Effect.Effect<Stream.Stream<A, E2, R2>, E, R> |
| 7463 | ): Stream.Stream<A, E | E2, R | R2> => flatten(scopedWith((scope) => f(scope))) |
| 7464 | |
| 7465 | /** @internal */ |
| 7466 | export const updateService = dual< |
no test coverage detected
searching dependent graphs…