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
I currently have a use-case where I would like to iterate over mutable windows in reverse. Would it be possible to implement .rev() for LendingIterator?
In case you say e.g. a Vec already provides reverse, I would argue those are different use-cases, since reverse reverses the vector in-place, whereas .rev() just iterates from the back.
Thanks for the awesome crate!
The text was updated successfully, but these errors were encountered:
I currently have a use-case where I would like to iterate over mutable windows in reverse. Would it be possible to implement
.rev()
forLendingIterator
?In case you say e.g. a
Vec
already providesreverse
, I would argue those are different use-cases, sincereverse
reverses the vector in-place, whereas.rev()
just iterates from the back.Thanks for the awesome crate!
The text was updated successfully, but these errors were encountered: