Issue with `Stream.retry` in `pipe` causing error type parameter to become `unknown`
When using
E.g this becomes
But this works (becomes
Am I doing sth. wrong?
Stream.retry in pipe it seems to swallow the error type parameter to unknown. E.g this becomes
Stream<R, unknown, A>:But this works (becomes
Stream<R, E, A>):Am I doing sth. wrong?
