Understanding `andThen` vs `flatMap` in TypeScript Effects
Hi, I have played with this difference
from my understanding is that both behave the same, only the minor difference is that
but for
are there any others i might have missed?
andThen and flatMap: from my understanding is that both behave the same, only the minor difference is that
andThen can handle both: andThen(() => O.some(2)) and andThen(O.some(2))but for
flatMap can only handle flatMap(() => O.some(2))are there any others i might have missed?
