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
…=flip1995
Alphabetize configuration options and lints in Clippy documentation
changelog: alphabetize configuration options and affected lints listed in section 3.1. of the Clippy Documentation
r? blyxyas
As discussed in PR #12160, we need an iterator-based approach for collections::list helper functions.
This task includes:
@List<T>
(i.e.BoxedList<T>
)BoxedList<T>
operations (i.e.BoxedListOps<T>
)BoxedListIterator<T>
and implementiter()
from withinBoxedListOps<T>
any()
,has()
...) to an iterator-based approachBoxedListOps<T>
so they can become methods w/ 'self' (i.e.list.has(1u)
instead oflist::has(list, 1u)
)The text was updated successfully, but these errors were encountered: