@@ -1119,13 +1119,6 @@ where
1119
1119
Lanes :: new ( self . view ( ) , Axis ( n - 1 ) )
1120
1120
}
1121
1121
1122
- #[ deprecated( note = "Renamed to .rows()" , since = "0.15.0" ) ]
1123
- pub fn genrows ( & self ) -> Lanes < ' _ , A , D :: Smaller >
1124
- where S : Data
1125
- {
1126
- self . rows ( )
1127
- }
1128
-
1129
1122
/// Return a producer and iterable that traverses over the *generalized*
1130
1123
/// rows of the array and yields mutable array views.
1131
1124
///
@@ -1140,13 +1133,6 @@ where
1140
1133
LanesMut :: new ( self . view_mut ( ) , Axis ( n - 1 ) )
1141
1134
}
1142
1135
1143
- #[ deprecated( note = "Renamed to .rows_mut()" , since = "0.15.0" ) ]
1144
- pub fn genrows_mut ( & mut self ) -> LanesMut < ' _ , A , D :: Smaller >
1145
- where S : DataMut
1146
- {
1147
- self . rows_mut ( )
1148
- }
1149
-
1150
1136
/// Return a producer and iterable that traverses over the *generalized*
1151
1137
/// columns of the array. For a 2D array these are the regular columns.
1152
1138
///
@@ -1179,17 +1165,6 @@ where
1179
1165
Lanes :: new ( self . view ( ) , Axis ( 0 ) )
1180
1166
}
1181
1167
1182
- /// Return a producer and iterable that traverses over the *generalized*
1183
- /// columns of the array. For a 2D array these are the regular columns.
1184
- ///
1185
- /// Renamed to `.columns()`
1186
- #[ deprecated( note = "Renamed to .columns()" , since = "0.15.0" ) ]
1187
- pub fn gencolumns ( & self ) -> Lanes < ' _ , A , D :: Smaller >
1188
- where S : Data
1189
- {
1190
- self . columns ( )
1191
- }
1192
-
1193
1168
/// Return a producer and iterable that traverses over the *generalized*
1194
1169
/// columns of the array and yields mutable array views.
1195
1170
///
@@ -1200,17 +1175,6 @@ where
1200
1175
LanesMut :: new ( self . view_mut ( ) , Axis ( 0 ) )
1201
1176
}
1202
1177
1203
- /// Return a producer and iterable that traverses over the *generalized*
1204
- /// columns of the array and yields mutable array views.
1205
- ///
1206
- /// Renamed to `.columns_mut()`
1207
- #[ deprecated( note = "Renamed to .columns_mut()" , since = "0.15.0" ) ]
1208
- pub fn gencolumns_mut ( & mut self ) -> LanesMut < ' _ , A , D :: Smaller >
1209
- where S : DataMut
1210
- {
1211
- self . columns_mut ( )
1212
- }
1213
-
1214
1178
/// Return a producer and iterable that traverses over all 1D lanes
1215
1179
/// pointing in the direction of `axis`.
1216
1180
///
@@ -2942,20 +2906,6 @@ where
2942
2906
self . fold ( ( ) , move |( ) , elt| f ( elt) )
2943
2907
}
2944
2908
2945
- /// Visit each element in the array by calling `f` by reference
2946
- /// on each element.
2947
- ///
2948
- /// Elements are visited in arbitrary order.
2949
- #[ deprecated( note = "Renamed to .for_each()" , since = "0.15.0" ) ]
2950
- pub fn visit < ' a , F > ( & ' a self , f : F )
2951
- where
2952
- F : FnMut ( & ' a A ) ,
2953
- A : ' a ,
2954
- S : Data ,
2955
- {
2956
- self . for_each ( f)
2957
- }
2958
-
2959
2909
/// Fold along an axis.
2960
2910
///
2961
2911
/// Combine the elements of each subview with the previous using the `fold`
0 commit comments