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 d237595 commit 1912bd9Copy full SHA for 1912bd9
src/impl_2d.rs
@@ -58,12 +58,6 @@ where
58
self.len_of(Axis(0))
59
}
60
61
- /// Return the number of rows (length of `Axis(0)`) in the two-dimensional array.
62
- #[deprecated(note = "Renamed to .nrows(), please use the new name")]
63
- pub fn rows(&self) -> usize {
64
- self.nrows()
65
- }
66
-
67
/// Return an array view of column `index`.
68
///
69
/// **Panics** if `index` is out of bounds.
@@ -108,12 +102,6 @@ where
108
102
self.len_of(Axis(1))
109
103
110
104
111
- /// Return the number of columns (length of `Axis(1)`) in the two-dimensional array.
112
- #[deprecated(note = "Renamed to .ncols(), please use the new name")]
113
- pub fn cols(&self) -> usize {
114
- self.ncols()
115
116
117
105
/// Return true if the array is square, false otherwise.
118
106
119
107
/// # Examples
0 commit comments