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
How to fix: We probably need to sprinkle a bit of unsafe here to be able to move self.data into the closure, and make it independent of iteration order.
The text was updated successfully, but these errors were encountered:
outer_iterator_mut
uses a successive application ofsplit_at_mut
. The iterator is such not double-ended, and will fail when trying to iterate backwards on it. The code for this can be seen at https://github.com/mulimoen/sprs/tree/bug/outer_iterator_mut, see the actions page at https://github.com/mulimoen/sprs/actions/runs/436352486 for the error message.How to fix: We probably need to sprinkle a bit of unsafe here to be able to move
self.data
into the closure, and make it independent of iteration order.The text was updated successfully, but these errors were encountered: