(thunk: LazyArg<A>)
| 1213 | |
| 1214 | /* @internal */ |
| 1215 | export const sync = <A>(thunk: LazyArg<A>): Effect.Effect<A> => { |
| 1216 | const effect = new EffectPrimitive(OpCodes.OP_SYNC) as any |
| 1217 | effect.effect_instruction_i0 = thunk |
| 1218 | return effect |
| 1219 | } |
| 1220 | |
| 1221 | /* @internal */ |
| 1222 | export const tap = dual< |
no outgoing calls
no test coverage detected