Files
rust/clippy_lints
Samuel Tardieu c69905a995 Do not remove method call if type is adjusted
Propose to replace `x.map_or(false, |y| y == z)` by `x == Some(z)` only
if `x` is not adjusted. Otherwise, the type of `x` in the comparaison
may not be the expected one, as it may be the product of an auto-deref.
2025-06-30 19:51:13 +02:00
..
2025-06-26 19:30:02 +02:00

This crate contains Clippy lints. For the main crate, check GitHub.