MCPcopy Index your code
hub / github.com/Effect-TS/effect / launch

Function launch

packages/effect/src/internal/layer.ts:669–675  ·  view source on GitHub ↗
(self: Layer.Layer<ROut, E, RIn>)

Source from the content-addressed store, hash-verified

667
668/** @internal */
669export 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 */
678export const mock: {

Callers

nothing calls this directly

Calls 1

pipeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…