Idiomatic Approach to Merging Multiple Pipelines with Error Control
I'm wondering what the idiomatic way of merging two or more pipelines together into a single pipe while also allowing for error control.
Looking at the website on Control Flow > The Role of Short-Circuting, the use of Effect.all only shows the application ending on the single
all
all
action. How would one apply a flatMap to the result without creating a complex handler taking both the success and failure cases? I feel like there is no short circuit occurring here.