We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Name: and_then_some Group: complexity
Warn about option.and_then(|o| Some(x)) and suggest replacing with option.map(|o| x).
option.and_then(|o| Some(x))
option.map(|o| x)