@@ -189,7 +189,7 @@ where
189
189
/// to each element.
190
190
///
191
191
/// The array is shown in multiline style.
192
- impl < ' a , A : fmt:: Display , S , D : Dimension > fmt:: Display for ArrayBase < S , D >
192
+ impl < A : fmt:: Display , S , D : Dimension > fmt:: Display for ArrayBase < S , D >
193
193
where
194
194
S : Data < Elem = A > ,
195
195
{
@@ -203,7 +203,7 @@ where
203
203
/// to each element.
204
204
///
205
205
/// The array is shown in multiline style.
206
- impl < ' a , A : fmt:: Debug , S , D : Dimension > fmt:: Debug for ArrayBase < S , D >
206
+ impl < A : fmt:: Debug , S , D : Dimension > fmt:: Debug for ArrayBase < S , D >
207
207
where
208
208
S : Data < Elem = A > ,
209
209
{
@@ -217,7 +217,7 @@ where
217
217
", shape={:?}, strides={:?}, layout={:?}" ,
218
218
self . shape( ) ,
219
219
self . strides( ) ,
220
- layout = self . view( ) . layout( )
220
+ self . view( ) . layout( ) ,
221
221
) ?;
222
222
match D :: NDIM {
223
223
Some ( ndim) => write ! ( f, ", const ndim={}" , ndim) ?,
@@ -231,7 +231,7 @@ where
231
231
/// to each element.
232
232
///
233
233
/// The array is shown in multiline style.
234
- impl < ' a , A : fmt:: LowerExp , S , D : Dimension > fmt:: LowerExp for ArrayBase < S , D >
234
+ impl < A : fmt:: LowerExp , S , D : Dimension > fmt:: LowerExp for ArrayBase < S , D >
235
235
where
236
236
S : Data < Elem = A > ,
237
237
{
@@ -245,7 +245,7 @@ where
245
245
/// to each element.
246
246
///
247
247
/// The array is shown in multiline style.
248
- impl < ' a , A : fmt:: UpperExp , S , D : Dimension > fmt:: UpperExp for ArrayBase < S , D >
248
+ impl < A : fmt:: UpperExp , S , D : Dimension > fmt:: UpperExp for ArrayBase < S , D >
249
249
where
250
250
S : Data < Elem = A > ,
251
251
{
@@ -258,7 +258,7 @@ where
258
258
/// to each element.
259
259
///
260
260
/// The array is shown in multiline style.
261
- impl < ' a , A : fmt:: LowerHex , S , D : Dimension > fmt:: LowerHex for ArrayBase < S , D >
261
+ impl < A : fmt:: LowerHex , S , D : Dimension > fmt:: LowerHex for ArrayBase < S , D >
262
262
where
263
263
S : Data < Elem = A > ,
264
264
{
@@ -272,7 +272,7 @@ where
272
272
/// to each element.
273
273
///
274
274
/// The array is shown in multiline style.
275
- impl < ' a , A : fmt:: Binary , S , D : Dimension > fmt:: Binary for ArrayBase < S , D >
275
+ impl < A : fmt:: Binary , S , D : Dimension > fmt:: Binary for ArrayBase < S , D >
276
276
where
277
277
S : Data < Elem = A > ,
278
278
{
0 commit comments