Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-evaluate filtering functions #3318

Open
mikearnaldi opened this issue Jul 22, 2024 · 4 comments
Open

Re-evaluate filtering functions #3318

mikearnaldi opened this issue Jul 22, 2024 · 4 comments
Labels
breaking Breaking change

Comments

@mikearnaldi
Copy link
Member

Filter functions are kind of disaligned between modules and sometimes a bit odd, for example:

import { Effect, Option } from "effect"

const filtered = Effect.filter(
  [0, 1, 2, "ok", "maybe"],
  (v) => v === "nooo" ? Effect.fail(new Error(v)) : Effect.sync(() => typeof v === "number")
)

const filterMapped = Effect.filterMap(
  [Effect.succeed(0), Effect.succeed(1), Effect.succeed(2)],
  (v) => v > 3 ? Option.none() : Option.some(v + 1)
)

I'd expect instead:

import { Effect, Option } from "effect"

const filtered = Effect.filter(
  [0, 1, 2, "ok", "maybe"],
  (v) => v === "nooo" ? Effect.fail(new Error(v)) : Effect.sync(() => typeof v === "number")
)

const filterMapped = Effect.filterMap(
  [0, 1, 2],
  (v) => v > 3 ? Effect.succeed(Option.none()) : Effect.succeed(Option.some(v + 1))
)
@mikearnaldi mikearnaldi added the breaking Breaking change label Jul 22, 2024
@IMax153
Copy link
Member

IMax153 commented Jul 23, 2024

I agree with this 100%. I find the existing Effect.filterMap API strange anyways.

@wbhob
Copy link

wbhob commented Jul 24, 2024

Seems like there's a matrix of types in/out that can be built:

boolean OUT Effect<boolean> OUT
Array IN Array.filter Effect.filter
Array<Effect> IN Effect.filterMap & ignore result ?

and a similar one for filter map

T OUT Effect<T> OUT
Array<T> IN Array.filter().map() Effect.filter > Effect.flatMap
Array<Effect<T>> IN Effect.filterMap ?

@mikearnaldi
Copy link
Member Author

Wondering if we shouldn't take a different strategy, I currently see a number of issues:

  1. filter can't refine unless for simple scenarios where a Refinement can be supported
  2. filterMap is verbose and requires mixing values with options
  3. filter + filterMap are kind of variants of the same principle and we are duplicating APIs

I have started playing around with the following idea: https://effect.website/play#b7c0272daa18

It looks to me much less verbose and it allows in one shot to both filter/refine and to map

@mikearnaldi
Copy link
Member Author

I've placed omit inside the filter function to reduce the noise but it could very well be exported from the main effect module and declared in something like Predicate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking Breaking change
Projects
None yet
Development

No branches or pull requests

3 participants