(value: A)
| 761 | |
| 762 | /** @internal */ |
| 763 | export const succeed = <A>(value: A): STM.STM<A> => { |
| 764 | const stm = new STMPrimitive(OpCodes.OP_SUCCEED) |
| 765 | stm.effect_instruction_i1 = value |
| 766 | return stm as any |
| 767 | } |
| 768 | |
| 769 | /** @internal */ |
| 770 | export const sync = <A>(evaluate: () => A): STM.STM<A> => { |