You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 22, 2021. It is now read-only.
In our current LazyList implementation, you have to say whether a LazyList instance is going to be empty or non empty at the time you build it, making it impossible to implement an unblocking linesStream operation. We should consider delaying the moment where we say whether the LazyList is empty or not to iteration time instead of construction time.
@sjrd pointed mo to scala/bug#10696
In our current
LazyListimplementation, you have to say whether aLazyListinstance is going to be empty or non empty at the time you build it, making it impossible to implement an unblockinglinesStreamoperation. We should consider delaying the moment where we say whether theLazyListis empty or not to iteration time instead of construction time.