New lint: and_then_some #4299
Labels
A-lint
Area: New lints
good-first-issue
These issues are a good way to get started with Clippy
L-complexity
Lint: Belongs in the complexity lint group
L-suggestion
Lint: Improving, adding or fixing lint suggestions
Name: and_then_some
Group: complexity
Warn about
option.and_then(|o| Some(x))
and suggest replacing withoption.map(|o| x)
.The text was updated successfully, but these errors were encountered: