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

Function run

packages/effect/src/FiberMap.ts:468–476  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

466 } | undefined
467 ): Effect.Effect<Fiber.RuntimeFiber<XA, XE>, never, R>
468} = function() {
469 const self = arguments[0]
470 if (Effect.isEffect(arguments[2])) {
471 return runImpl(self, arguments[1], arguments[2], arguments[3]) as any
472 }
473 const key = arguments[1]
474 const options = arguments[2]
475 return (effect: Effect.Effect<any, any, any>) => runImpl(self, key, effect, options)
476}
477
478const runImpl = <K, A, E, R, XE extends E, XA extends A>(
479 self: FiberMap<K, A, E>,

Callers

nothing calls this directly

Calls 1

runImplFunction · 0.70

Tested by

no test coverage detected