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

Function run

packages/effect/src/FiberHandle.ts:362–369  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

360 }
361 ): Effect.Effect<Fiber.RuntimeFiber<XA, XE>, never, R>
362} = function() {
363 const self = arguments[0] as FiberHandle
364 if (Effect.isEffect(arguments[1])) {
365 return runImpl(self, arguments[1], arguments[2]) as any
366 }
367 const options = arguments[1]
368 return (effect: Effect.Effect<unknown, unknown, any>) => runImpl(self, effect, options)
369}
370
371const runImpl = <A, E, R, XE extends E, XA extends A>(
372 self: FiberHandle<A, E>,

Callers

nothing calls this directly

Calls 1

runImplFunction · 0.70

Tested by

no test coverage detected