@@ -189,7 +189,7 @@ where
189189/// to each element.
190190///
191191/// 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 >
193193where
194194 S : Data < Elem = A > ,
195195{
@@ -203,7 +203,7 @@ where
203203/// to each element.
204204///
205205/// 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 >
207207where
208208 S : Data < Elem = A > ,
209209{
@@ -217,7 +217,7 @@ where
217217 ", shape={:?}, strides={:?}, layout={:?}" ,
218218 self . shape( ) ,
219219 self . strides( ) ,
220- layout = self . view( ) . layout( )
220+ self . view( ) . layout( ) ,
221221 ) ?;
222222 match D :: NDIM {
223223 Some ( ndim) => write ! ( f, ", const ndim={}" , ndim) ?,
@@ -231,7 +231,7 @@ where
231231/// to each element.
232232///
233233/// 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 >
235235where
236236 S : Data < Elem = A > ,
237237{
@@ -245,7 +245,7 @@ where
245245/// to each element.
246246///
247247/// 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 >
249249where
250250 S : Data < Elem = A > ,
251251{
@@ -258,7 +258,7 @@ where
258258/// to each element.
259259///
260260/// 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 >
262262where
263263 S : Data < Elem = A > ,
264264{
@@ -272,7 +272,7 @@ where
272272/// to each element.
273273///
274274/// 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 >
276276where
277277 S : Data < Elem = A > ,
278278{
0 commit comments