(cause: Cause.Cause<E>)
| 724 | |
| 725 | /* @internal */ |
| 726 | export const failCause = <E>(cause: Cause.Cause<E>): Effect.Effect<never, E> => { |
| 727 | const effect = new EffectPrimitiveFailure(OpCodes.OP_FAILURE) as any |
| 728 | effect.effect_instruction_i0 = cause |
| 729 | return effect |
| 730 | } |
| 731 | |
| 732 | /* @internal */ |
| 733 | export const failCauseSync = <E>( |
no outgoing calls
no test coverage detected