We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7d8bb commit 2ed283aCopy full SHA for 2ed283a
1 file changed
src/numeric/impl_numeric.rs
@@ -47,16 +47,6 @@ where
47
sum
48
}
49
50
- /// Return the sum of all elements in the array.
51
- ///
52
- /// *This method has been renamed to `.sum()`*
53
- #[deprecated(note = "renamed to `sum`", since = "0.15.0")]
54
- pub fn scalar_sum(&self) -> A
55
- where A: Clone + Add<Output = A> + num_traits::Zero
56
- {
57
- self.sum()
58
- }
59
-
60
/// Returns the [arithmetic mean] x̅ of all elements in the array:
61
///
62
/// ```text
0 commit comments