Converting Effect.gen to Effect.fn: Impact on Performance?
I've been looking into converting all my Effect.gen to Effect.fn. Previously, I was providing deps as such:
Effect.fn returns a function that returns the effect, so I'm now doing it as such:
by providing args in the outer function instead of in the generator function args like in the docs, am I bypassing something that enables the performance gains of switching to .fn?
Effect.fn returns a function that returns the effect, so I'm now doing it as such:
by providing args in the outer function instead of in the generator function args like in the docs, am I bypassing something that enables the performance gains of switching to .fn?
