Skip to content

Commit 2ed283a

Browse files
committed
Remove deprecated scalar_sum
1 parent ca7d8bb commit 2ed283a

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/numeric/impl_numeric.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,6 @@ where
4747
sum
4848
}
4949

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-
6050
/// Returns the [arithmetic mean] x̅ of all elements in the array:
6151
///
6252
/// ```text

0 commit comments

Comments
 (0)