Patch Changes
-
#2602
9a24667
Thanks @mikearnaldi! - allow use of generators (Effect.gen) without the adapterEffect's data types now implement a Iterable that can be
yield*
'ed directly.Effect.gen(function* () { const a = yield* Effect.success(1); const b = yield* Effect.success(2); return a + b; });