( effect: Effect.Effect<X, E, R> )
| 950 | |
| 951 | /** @internal */ |
| 952 | export const scopedDiscard = <X, E, R>( |
| 953 | effect: Effect.Effect<X, E, R> |
| 954 | ): Layer.Layer<never, E, Exclude<R, Scope.Scope>> => scopedContext(pipe(effect, core.as(Context.empty()))) |
| 955 | |
| 956 | /** @internal */ |
| 957 | export const scopedContext = <A, E, R>( |
no test coverage detected