Avoid Unstable Sort (#12455)

* dont use unstable sort

* remove comment

* add clippy rule
This commit is contained in:
Shawn Tabrizi
2022-10-11 14:41:43 -04:00
committed by GitHub
parent fbdfa84cd7
commit 023aa03fea
9 changed files with 14 additions and 17 deletions
+2 -2
View File
@@ -181,7 +181,7 @@ impl Analysis {
})
.collect();
values.sort_unstable();
values.sort();
let mid = values.len() / 2;
Some(Self {
@@ -311,7 +311,7 @@ impl Analysis {
}
for (_, rs) in results.iter_mut() {
rs.sort_unstable();
rs.sort();
let ql = rs.len() / 4;
*rs = rs[ql..rs.len() - ql].to_vec();
}