@@ -1004,26 +1004,26 @@ mod impls {
1004
1004
// & pointers
1005
1005
1006
1006
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1007
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b B > for & ' a A where A : PartialEq < B > {
1007
+ impl < A : ?Sized , B : ?Sized > PartialEq < & B > for & A where A : PartialEq < B > {
1008
1008
#[ inline]
1009
- fn eq ( & self , other : & & ' b B ) -> bool { PartialEq :: eq ( * self , * other) }
1009
+ fn eq ( & self , other : & & B ) -> bool { PartialEq :: eq ( * self , * other) }
1010
1010
#[ inline]
1011
- fn ne ( & self , other : & & ' b B ) -> bool { PartialEq :: ne ( * self , * other) }
1011
+ fn ne ( & self , other : & & B ) -> bool { PartialEq :: ne ( * self , * other) }
1012
1012
}
1013
1013
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1014
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialOrd < & ' b B > for & ' a A where A : PartialOrd < B > {
1014
+ impl < A : ?Sized , B : ?Sized > PartialOrd < & B > for & A where A : PartialOrd < B > {
1015
1015
#[ inline]
1016
- fn partial_cmp ( & self , other : & & ' b B ) -> Option < Ordering > {
1016
+ fn partial_cmp ( & self , other : & & B ) -> Option < Ordering > {
1017
1017
PartialOrd :: partial_cmp ( * self , * other)
1018
1018
}
1019
1019
#[ inline]
1020
- fn lt ( & self , other : & & ' b B ) -> bool { PartialOrd :: lt ( * self , * other) }
1020
+ fn lt ( & self , other : & & B ) -> bool { PartialOrd :: lt ( * self , * other) }
1021
1021
#[ inline]
1022
- fn le ( & self , other : & & ' b B ) -> bool { PartialOrd :: le ( * self , * other) }
1022
+ fn le ( & self , other : & & B ) -> bool { PartialOrd :: le ( * self , * other) }
1023
1023
#[ inline]
1024
- fn ge ( & self , other : & & ' b B ) -> bool { PartialOrd :: ge ( * self , * other) }
1024
+ fn ge ( & self , other : & & B ) -> bool { PartialOrd :: ge ( * self , * other) }
1025
1025
#[ inline]
1026
- fn gt ( & self , other : & & ' b B ) -> bool { PartialOrd :: gt ( * self , * other) }
1026
+ fn gt ( & self , other : & & B ) -> bool { PartialOrd :: gt ( * self , * other) }
1027
1027
}
1028
1028
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1029
1029
impl < A : ?Sized > Ord for & A where A : Ord {
@@ -1036,26 +1036,26 @@ mod impls {
1036
1036
// &mut pointers
1037
1037
1038
1038
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1039
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b mut B > for & ' a mut A where A : PartialEq < B > {
1039
+ impl < A : ?Sized , B : ?Sized > PartialEq < & mut B > for & mut A where A : PartialEq < B > {
1040
1040
#[ inline]
1041
- fn eq ( & self , other : & & ' b mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1041
+ fn eq ( & self , other : & & mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1042
1042
#[ inline]
1043
- fn ne ( & self , other : & & ' b mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1043
+ fn ne ( & self , other : & & mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1044
1044
}
1045
1045
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1046
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialOrd < & ' b mut B > for & ' a mut A where A : PartialOrd < B > {
1046
+ impl < A : ?Sized , B : ?Sized > PartialOrd < & mut B > for & mut A where A : PartialOrd < B > {
1047
1047
#[ inline]
1048
- fn partial_cmp ( & self , other : & & ' b mut B ) -> Option < Ordering > {
1048
+ fn partial_cmp ( & self , other : & & mut B ) -> Option < Ordering > {
1049
1049
PartialOrd :: partial_cmp ( * self , * other)
1050
1050
}
1051
1051
#[ inline]
1052
- fn lt ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: lt ( * self , * other) }
1052
+ fn lt ( & self , other : & & mut B ) -> bool { PartialOrd :: lt ( * self , * other) }
1053
1053
#[ inline]
1054
- fn le ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: le ( * self , * other) }
1054
+ fn le ( & self , other : & & mut B ) -> bool { PartialOrd :: le ( * self , * other) }
1055
1055
#[ inline]
1056
- fn ge ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: ge ( * self , * other) }
1056
+ fn ge ( & self , other : & & mut B ) -> bool { PartialOrd :: ge ( * self , * other) }
1057
1057
#[ inline]
1058
- fn gt ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: gt ( * self , * other) }
1058
+ fn gt ( & self , other : & & mut B ) -> bool { PartialOrd :: gt ( * self , * other) }
1059
1059
}
1060
1060
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1061
1061
impl < A : ?Sized > Ord for & mut A where A : Ord {
@@ -1066,18 +1066,18 @@ mod impls {
1066
1066
impl < A : ?Sized > Eq for & mut A where A : Eq { }
1067
1067
1068
1068
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1069
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b mut B > for & ' a A where A : PartialEq < B > {
1069
+ impl < A : ?Sized , B : ?Sized > PartialEq < & mut B > for & A where A : PartialEq < B > {
1070
1070
#[ inline]
1071
- fn eq ( & self , other : & & ' b mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1071
+ fn eq ( & self , other : & & mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1072
1072
#[ inline]
1073
- fn ne ( & self , other : & & ' b mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1073
+ fn ne ( & self , other : & & mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1074
1074
}
1075
1075
1076
1076
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1077
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b B > for & ' a mut A where A : PartialEq < B > {
1077
+ impl < A : ?Sized , B : ?Sized > PartialEq < & B > for & mut A where A : PartialEq < B > {
1078
1078
#[ inline]
1079
- fn eq ( & self , other : & & ' b B ) -> bool { PartialEq :: eq ( * self , * other) }
1079
+ fn eq ( & self , other : & & B ) -> bool { PartialEq :: eq ( * self , * other) }
1080
1080
#[ inline]
1081
- fn ne ( & self , other : & & ' b B ) -> bool { PartialEq :: ne ( * self , * other) }
1081
+ fn ne ( & self , other : & & B ) -> bool { PartialEq :: ne ( * self , * other) }
1082
1082
}
1083
1083
}
0 commit comments