Handling NoSuchElementException in TypeScript Effect Retry Logic
In this scenario
The return type will be
Shouldn't the
The return type will be
Effect.Effect<T, E | NoSuchElementException, R>Shouldn't the
NoSuchElementException be discarded since it will retry forever until that condition is met?