(self: Layer.Layer<ROut, E, RIn>)
| 667 | |
| 668 | /** @internal */ |
| 669 | export const launch = <RIn, E, ROut>(self: Layer.Layer<ROut, E, RIn>): Effect.Effect<never, E, RIn> => |
| 670 | fiberRuntime.scopedEffect( |
| 671 | core.zipRight( |
| 672 | fiberRuntime.scopeWith((scope) => pipe(self, buildWithScope(scope))), |
| 673 | core.never |
| 674 | ) |
| 675 | ) |
| 676 | |
| 677 | /** @internal */ |
| 678 | export const mock: { |
nothing calls this directly
no test coverage detected
searching dependent graphs…