@@ -22,8 +22,8 @@ impl<T: PartialEq> PartialEq for ConcurrentVec<T> {
2222 }
2323}
2424
25- impl < ' a , T : PartialEq > PartialEq < ConcurrentSlice < ' a , T > > for ConcurrentVec < T > {
26- fn eq ( & self , other : & ConcurrentSlice < ' a , T > ) -> bool {
25+ impl < T : PartialEq > PartialEq < ConcurrentSlice < ' _ , T > > for ConcurrentVec < T > {
26+ fn eq ( & self , other : & ConcurrentSlice < ' _ , T > ) -> bool {
2727 eq_elem_iters ( self . iter ( ) , other. iter ( ) )
2828 }
2929}
@@ -42,25 +42,25 @@ impl<const N: usize, T: PartialEq> PartialEq<[T; N]> for ConcurrentVec<T> {
4242
4343// slice
4444
45- impl < ' a , T : PartialEq > PartialEq for ConcurrentSlice < ' a , T > {
45+ impl < T : PartialEq > PartialEq for ConcurrentSlice < ' _ , T > {
4646 fn eq ( & self , other : & Self ) -> bool {
4747 eq_elem_iters ( self . iter ( ) , other. iter ( ) )
4848 }
4949}
5050
51- impl < ' a , T : PartialEq > PartialEq < ConcurrentVec < T > > for ConcurrentSlice < ' a , T > {
51+ impl < T : PartialEq > PartialEq < ConcurrentVec < T > > for ConcurrentSlice < ' _ , T > {
5252 fn eq ( & self , other : & ConcurrentVec < T > ) -> bool {
5353 eq_elem_iters ( self . iter ( ) , other. iter ( ) )
5454 }
5555}
5656
57- impl < ' a , T : PartialEq > PartialEq < [ T ] > for ConcurrentSlice < ' a , T > {
57+ impl < T : PartialEq > PartialEq < [ T ] > for ConcurrentSlice < ' _ , T > {
5858 fn eq ( & self , other : & [ T ] ) -> bool {
5959 eq_elem_iter_to_iter ( self . iter ( ) , other. iter ( ) )
6060 }
6161}
6262
63- impl < ' a , const N : usize , T : PartialEq > PartialEq < [ T ; N ] > for ConcurrentSlice < ' a , T > {
63+ impl < const N : usize , T : PartialEq > PartialEq < [ T ; N ] > for ConcurrentSlice < ' _ , T > {
6464 fn eq ( & self , other : & [ T ; N ] ) -> bool {
6565 eq_elem_iter_to_iter ( self . iter ( ) , other. iter ( ) )
6666 }
0 commit comments