(evaluate: LazyArg<unknown>)
| 630 | |
| 631 | /** @internal */ |
| 632 | export const dieSync = (evaluate: LazyArg<unknown>): STM.STM<never> => { |
| 633 | const stm = new STMPrimitive(OpCodes.OP_DIE) |
| 634 | stm.effect_instruction_i1 = evaluate |
| 635 | return stm as any |
| 636 | } |
| 637 | |
| 638 | /** @internal */ |
| 639 | export const effect = <R, A>( |
no outgoing calls
no test coverage detected
searching dependent graphs…