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
At the moment the List::unfold and List::unfoldLeft are implemented as Iteartor.unfoldLeft(...).toList() which works but perhaps a better implementation would be
At the moment the
List::unfold
andList::unfoldLeft
are implemented asIteartor.unfoldLeft(...).toList()
which works but perhaps a better implementation would beThis builds the result without any additional
reverse()
operations andStreams
in a singlefor
-loop.The text was updated successfully, but these errors were encountered: