Managing Complexity and Length in Effect.all() and Extracting Functions in Typescript
I've got an Effect.all() which makes multiple trees of dependent calls (7 layers deep) within an Effect.gen. The indentation is getting unyieldable. At the same time the effect itself is getting quite long.
Are there best practices on chunking down the complexity or length of the first example?
For the second one Typescript "Extract to function in Module Scope" extracts it e.g. as: