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

Function sequential

packages/effect/src/internal/cause.ts:122–128  ·  view source on GitHub ↗
(left: Cause.Cause<E>, right: Cause.Cause<E2>)

Source from the content-addressed store, hash-verified

120
121/** @internal */
122export const sequential = <E, E2>(left: Cause.Cause<E>, right: Cause.Cause<E2>): Cause.Cause<E | E2> => {
123 const o = Object.create(proto)
124 o._tag = OpCodes.OP_SEQUENTIAL
125 o.left = left
126 o.right = right
127 return o
128}
129
130// -----------------------------------------------------------------------------
131// Refinements

Callers 7

matchFunction · 0.70
matchSimpleFunction · 0.70
matchConcurrencyFunction · 0.70
linearizeFunction · 0.70
cause.tsFile · 0.70
evaluateCauseFunction · 0.70
FilterCauseReducerFunction · 0.70

Calls 1

createMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…