Handling `Effect<void>` in Effect Generator Functions

What's the practice for doing Effect<void> computations (that return nothing) when writing an effect generator function?

It seems like yield* isn't compatible with such computations, so I'm not sure how to safely include them in the monadic binding chain
Was this page helpful?