File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 58
58
self . len_of ( Axis ( 0 ) )
59
59
}
60
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
61
/// Return an array view of column `index`.
68
62
///
69
63
/// **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
You can’t perform that action at this time.
0 commit comments