effect@3.0.4
·
2366 commits
to main
since this release
Patch Changes
-
#2602
9a24667Thanks @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; });