( f: (scope: Scope.Scope) => Effect.Effect<A, E, R> )
| 2856 | |
| 2857 | /* @internal */ |
| 2858 | export const scopeWith = <A, E, R>( |
| 2859 | f: (scope: Scope.Scope) => Effect.Effect<A, E, R> |
| 2860 | ): Effect.Effect<A, E, R | Scope.Scope> => core.flatMap(scopeTag, f) |
| 2861 | |
| 2862 | /** @internal */ |
| 2863 | export const scopedWith = <A, E, R>( |
no outgoing calls
no test coverage detected
searching dependent graphs…