-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
manual_filter_map
and manual_find_map
#6591
Conversation
r? @llogiq (rust-highfive has picked a reviewer for you, use r? to override) |
Our internal path check isn't having the |
That will be fixed in #6567. Hmm I suppose it is better to use the Option diagnostic item + method name. I'll do that. |
a5fbcc9
to
184694f
Compare
Sorry for leaving you waiting for so long. r=me once the conflicts are resolved. |
184694f
to
82bab19
Compare
No worries! r? @llogiq ^Is that right? |
Thank you! @bors r+ |
📌 Commit 82bab19 has been approved by |
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
changelog: Add
manual_filter_map
and replacefind_map
withmanual_find_map
Replaces #6453
Fixes #3188
Fixes #4193
Depends on #6567 (to fix an internal lint false positive)This replaces
filter_map
andfind_map
withmanual_filter_map
andmanual_find_map
respectively. However,filter_map
is left in place since it is used for a variety of other cases. See discussion in #6453.