2020-05-19 04:48:35 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
2020-07-09 03:29:56 +00:00
|
|
|
#![allow(clippy::stable_sort_primitive)]
|
|
|
|
|
2021-10-15 10:06:02 +00:00
|
|
|
use std::cell::Ref;
|
2020-05-20 05:57:27 +00:00
|
|
|
use std::cmp::Reverse;
|
|
|
|
|
2020-06-30 19:48:34 +00:00
|
|
|
fn unnecessary_sort_by() {
|
|
|
|
fn id(x: isize) -> isize {
|
|
|
|
x
|
|
|
|
}
|
2020-05-20 05:57:27 +00:00
|
|
|
|
2020-05-19 04:48:35 +00:00
|
|
|
let mut vec: Vec<isize> = vec![3, 6, 1, 2, 5];
|
2020-05-25 02:45:41 +00:00
|
|
|
// Forward examples
|
2020-05-25 03:05:58 +00:00
|
|
|
vec.sort();
|
2020-05-31 22:09:12 +00:00
|
|
|
vec.sort_unstable();
|
2020-09-23 21:33:50 +00:00
|
|
|
vec.sort_by_key(|a| (a + 5).abs());
|
|
|
|
vec.sort_unstable_by_key(|a| id(-a));
|
2020-05-25 02:45:41 +00:00
|
|
|
// Reverse examples
|
2020-09-23 21:33:50 +00:00
|
|
|
vec.sort_by(|a, b| b.cmp(a)); // not linted to avoid suggesting `Reverse(b)` which would borrow
|
|
|
|
vec.sort_by_key(|b| Reverse((b + 5).abs()));
|
|
|
|
vec.sort_unstable_by_key(|b| Reverse(id(-b)));
|
2020-05-20 16:23:00 +00:00
|
|
|
// Negative examples (shouldn't be changed)
|
|
|
|
let c = &7;
|
|
|
|
vec.sort_by(|a, b| (b - a).cmp(&(a - b)));
|
|
|
|
vec.sort_by(|_, b| b.cmp(&5));
|
|
|
|
vec.sort_by(|_, b| b.cmp(c));
|
2020-05-31 22:09:12 +00:00
|
|
|
vec.sort_unstable_by(|a, _| a.cmp(c));
|
2020-09-04 09:56:54 +00:00
|
|
|
|
2020-09-23 21:33:50 +00:00
|
|
|
// Vectors of references are fine as long as the resulting key does not borrow
|
2020-09-04 09:56:54 +00:00
|
|
|
let mut vec: Vec<&&&isize> = vec![&&&3, &&&6, &&&1, &&&2, &&&5];
|
2020-09-23 21:33:50 +00:00
|
|
|
vec.sort_by_key(|a| (***a).abs());
|
|
|
|
vec.sort_unstable_by_key(|a| (***a).abs());
|
|
|
|
// `Reverse(b)` would borrow in the following cases, don't lint
|
2020-09-04 09:56:54 +00:00
|
|
|
vec.sort_by(|a, b| b.cmp(a));
|
|
|
|
vec.sort_unstable_by(|a, b| b.cmp(a));
|
2021-10-15 10:06:02 +00:00
|
|
|
|
|
|
|
// No warning if element does not implement `Ord`
|
|
|
|
let mut vec: Vec<Ref<usize>> = Vec::new();
|
|
|
|
vec.sort_unstable_by(|a, b| a.cmp(b));
|
2020-05-19 04:48:35 +00:00
|
|
|
}
|
2020-06-30 19:48:34 +00:00
|
|
|
|
2020-09-04 09:56:54 +00:00
|
|
|
// Do not suggest returning a reference to the closure parameter of `Vec::sort_by_key`
|
2020-06-30 19:48:34 +00:00
|
|
|
mod issue_5754 {
|
2020-09-04 09:56:54 +00:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
struct Test(usize);
|
2020-06-30 19:48:34 +00:00
|
|
|
|
|
|
|
#[derive(PartialOrd, Ord, PartialEq, Eq)]
|
2020-09-04 09:56:54 +00:00
|
|
|
struct Wrapper<'a>(&'a usize);
|
2020-06-30 19:48:34 +00:00
|
|
|
|
|
|
|
impl Test {
|
2020-09-04 09:56:54 +00:00
|
|
|
fn name(&self) -> &usize {
|
2020-06-30 19:48:34 +00:00
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn wrapped(&self) -> Wrapper<'_> {
|
|
|
|
Wrapper(&self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test() {
|
|
|
|
let mut args: Vec<Test> = vec![];
|
|
|
|
|
|
|
|
// Forward
|
|
|
|
args.sort_by(|a, b| a.name().cmp(b.name()));
|
|
|
|
args.sort_by(|a, b| a.wrapped().cmp(&b.wrapped()));
|
|
|
|
args.sort_unstable_by(|a, b| a.name().cmp(b.name()));
|
|
|
|
args.sort_unstable_by(|a, b| a.wrapped().cmp(&b.wrapped()));
|
|
|
|
// Reverse
|
|
|
|
args.sort_by(|a, b| b.name().cmp(a.name()));
|
|
|
|
args.sort_by(|a, b| b.wrapped().cmp(&a.wrapped()));
|
|
|
|
args.sort_unstable_by(|a, b| b.name().cmp(a.name()));
|
|
|
|
args.sort_unstable_by(|a, b| b.wrapped().cmp(&a.wrapped()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-23 21:33:50 +00:00
|
|
|
// The closure parameter is not dereferenced anymore, so non-Copy types can be linted
|
2020-09-04 09:56:54 +00:00
|
|
|
mod issue_6001 {
|
2020-09-23 21:33:50 +00:00
|
|
|
use super::*;
|
2020-09-04 09:56:54 +00:00
|
|
|
struct Test(String);
|
|
|
|
|
|
|
|
impl Test {
|
|
|
|
// Return an owned type so that we don't hit the fix for 5754
|
|
|
|
fn name(&self) -> String {
|
|
|
|
self.0.clone()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test() {
|
|
|
|
let mut args: Vec<Test> = vec![];
|
|
|
|
|
|
|
|
// Forward
|
2020-09-23 21:33:50 +00:00
|
|
|
args.sort_by_key(|a| a.name());
|
|
|
|
args.sort_unstable_by_key(|a| a.name());
|
2020-09-04 09:56:54 +00:00
|
|
|
// Reverse
|
2020-09-23 21:33:50 +00:00
|
|
|
args.sort_by_key(|b| Reverse(b.name()));
|
|
|
|
args.sort_unstable_by_key(|b| Reverse(b.name()));
|
2020-09-04 09:56:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-30 19:48:34 +00:00
|
|
|
fn main() {
|
|
|
|
unnecessary_sort_by();
|
|
|
|
issue_5754::test();
|
2020-09-04 09:56:54 +00:00
|
|
|
issue_6001::test();
|
2020-06-30 19:48:34 +00:00
|
|
|
}
|