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.
1 parent 4710ece commit 7a091b3Copy full SHA for 7a091b3
clippy_lints/src/methods/mod.rs
@@ -3973,11 +3973,15 @@ declare_clippy_lint! {
3973
3974
declare_clippy_lint! {
3975
/// ### What it does
3976
- /// Checks for unnecessary calls to `min()` or `max()`
+ /// Checks for unnecessary calls to `min()` or `max()` in the following cases
3977
+ /// - Either both side is constant
3978
+ /// - One side is clearly larger than the other, like i32::MIN and an i32 variable
3979
///
3980
/// ### Why is this bad?
3981
- /// In these cases it is not necessary to call `min()`
3982
+ /// In the aformentioned cases it is not necessary to call `min()` or `max()`
3983
+ /// to compare values, it may even cause confusion.
3984
+ ///
3985
/// ### Example
3986
/// ```no_run
3987
/// let _ = 0.min(7_u32);
0 commit comments