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
The foldr and mapfoldr operations require that one traverse an iterator in reverse order. However, the current implementation assumes that the iterator supports getindex and endof. Now that we have a reverse-iteration protocol, it would be good to use it here instead of getindex.
The text was updated successfully, but these errors were encountered:
The
foldr
andmapfoldr
operations require that one traverse an iterator in reverse order. However, the current implementation assumes that the iterator supportsgetindex
andendof
. Now that we have a reverse-iteration protocol, it would be good to use it here instead ofgetindex
.The text was updated successfully, but these errors were encountered: