(evaluate: LazyArg<E>)
| 655 | |
| 656 | /** @internal */ |
| 657 | export const failSync = <E>(evaluate: LazyArg<E>): STM.STM<never, E> => { |
| 658 | const stm = new STMPrimitive(OpCodes.OP_FAIL) |
| 659 | stm.effect_instruction_i1 = evaluate |
| 660 | return stm as any |
| 661 | } |
| 662 | |
| 663 | /** @internal */ |
| 664 | export const flatMap = dual< |
no outgoing calls
no test coverage detected
searching dependent graphs…