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 382ab92 commit 8a6a9afCopy full SHA for 8a6a9af
src/libtest/stats.rs
@@ -11,7 +11,7 @@
11
#![allow(missing_docs)]
12
#![allow(deprecated)] // Float
13
14
-use std::cmp::Ordering::{self, Less, Greater, Equal};
+use std::cmp::Ordering::{self, Equal, Greater, Less};
15
use std::mem;
16
17
fn local_cmp(x: f64, y: f64) -> Ordering {
@@ -35,7 +35,6 @@ fn local_sort(v: &mut [f64]) {
35
36
/// Trait that provides simple descriptive statistics on a univariate set of numeric samples.
37
pub trait Stats {
38
-
39
/// Sum of the samples.
40
///
41
/// Note: this method sacrifices performance at the altar of accuracy
0 commit comments