Skip to content

effect@3.0.4

Choose a tag to compare

@github-actions github-actions released this 24 Apr 17:07
· 2366 commits to main since this release
ba67a5b

Patch Changes

  • #2602 9a24667 Thanks @mikearnaldi! - allow use of generators (Effect.gen) without the adapter

    Effect'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;
    });