flatMap in each effect

Hi! Small suggestion in case it would be possible:
I often just use the pipe of an
Effect
to just flatMap it with another
Effect
, like MyEffect.pipe(Effect.flatMap(foo => foo.somethingReturningAnEffect())
It would be amazing to have a flatMap method integrated to the effects like pipe is so we could do instead MyEffect.flatMap(foo => foo.somethingReturningAnEffect()) directly
WDYT?
Was this page helpful?