(effect: Effect.Effect<A, E, R>)
| 2866 | |
| 2867 | /* @internal */ |
| 2868 | export const scopedEffect = <A, E, R>(effect: Effect.Effect<A, E, R>): Effect.Effect<A, E, Exclude<R, Scope.Scope>> => |
| 2869 | core.flatMap(scopeMake(), (scope) => scopeUse(effect, scope)) |
| 2870 | |
| 2871 | /* @internal */ |
| 2872 | export const sequentialFinalizers = <A, E, R>(self: Effect.Effect<A, E, R>): Effect.Effect<A, E, R> => |
nothing calls this directly
no test coverage detected
searching dependent graphs…