MCPcopy Create free account
hub / github.com/Effect-TS/effect / run

Function run

packages/effect/src/FiberSet.ts:496–503  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

494 } | undefined
495 ): Effect.Effect<Fiber.Fiber<XA, XE>, never, R>
496} = function() {
497 const self = arguments[0] as FiberSet<any, any>
498 if (!Effect.isEffect(arguments[1])) {
499 const options = arguments[1]
500 return (effect: Effect.Effect<any, any, any>) => runImpl(self, effect, options)
501 }
502 return runImpl(self, arguments[1], arguments[2]) as any
503}
504
505const runImpl = <A, E, R, XE extends E, XA extends A>(
506 self: FiberSet<A, E>,

Callers 15

Stream.tsFile · 0.70
declareConstructorFunction · 0.70
someFunction · 0.70
noneFunction · 0.70
successFunction · 0.70
failureFunction · 0.70
decodeCaseFunction · 0.50
decodeParserCaseFunction · 0.50
encodeParserCaseFunction · 0.50
parserExitInvalidFunction · 0.50
exitValidFunction · 0.50
exitInvalidFunction · 0.50

Calls 1

runImplFunction · 0.70

Tested by

no test coverage detected