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 recently realized that skip_while(|i| !condition(i)).next() does the same as filter(|i| condition(i)).next() and more importantly has the same intent.
I propose to also lint skip_while(...).next()with the filter_next lint.