@@ -1030,26 +1030,26 @@ mod impls {
1030
1030
// & pointers
1031
1031
1032
1032
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1033
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b B > for & ' a A where A : PartialEq < B > {
1033
+ impl < A : ?Sized , B : ?Sized > PartialEq < & B > for & A where A : PartialEq < B > {
1034
1034
#[ inline]
1035
- fn eq ( & self , other : & & ' b B ) -> bool { PartialEq :: eq ( * self , * other) }
1035
+ fn eq ( & self , other : & & B ) -> bool { PartialEq :: eq ( * self , * other) }
1036
1036
#[ inline]
1037
- fn ne ( & self , other : & & ' b B ) -> bool { PartialEq :: ne ( * self , * other) }
1037
+ fn ne ( & self , other : & & B ) -> bool { PartialEq :: ne ( * self , * other) }
1038
1038
}
1039
1039
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1040
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialOrd < & ' b B > for & ' a A where A : PartialOrd < B > {
1040
+ impl < A : ?Sized , B : ?Sized > PartialOrd < & B > for & A where A : PartialOrd < B > {
1041
1041
#[ inline]
1042
- fn partial_cmp ( & self , other : & & ' b B ) -> Option < Ordering > {
1042
+ fn partial_cmp ( & self , other : & & B ) -> Option < Ordering > {
1043
1043
PartialOrd :: partial_cmp ( * self , * other)
1044
1044
}
1045
1045
#[ inline]
1046
- fn lt ( & self , other : & & ' b B ) -> bool { PartialOrd :: lt ( * self , * other) }
1046
+ fn lt ( & self , other : & & B ) -> bool { PartialOrd :: lt ( * self , * other) }
1047
1047
#[ inline]
1048
- fn le ( & self , other : & & ' b B ) -> bool { PartialOrd :: le ( * self , * other) }
1048
+ fn le ( & self , other : & & B ) -> bool { PartialOrd :: le ( * self , * other) }
1049
1049
#[ inline]
1050
- fn ge ( & self , other : & & ' b B ) -> bool { PartialOrd :: ge ( * self , * other) }
1050
+ fn ge ( & self , other : & & B ) -> bool { PartialOrd :: ge ( * self , * other) }
1051
1051
#[ inline]
1052
- fn gt ( & self , other : & & ' b B ) -> bool { PartialOrd :: gt ( * self , * other) }
1052
+ fn gt ( & self , other : & & B ) -> bool { PartialOrd :: gt ( * self , * other) }
1053
1053
}
1054
1054
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1055
1055
impl < A : ?Sized > Ord for & A where A : Ord {
@@ -1062,26 +1062,26 @@ mod impls {
1062
1062
// &mut pointers
1063
1063
1064
1064
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1065
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b mut B > for & ' a mut A where A : PartialEq < B > {
1065
+ impl < A : ?Sized , B : ?Sized > PartialEq < & mut B > for & mut A where A : PartialEq < B > {
1066
1066
#[ inline]
1067
- fn eq ( & self , other : & & ' b mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1067
+ fn eq ( & self , other : & & mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1068
1068
#[ inline]
1069
- fn ne ( & self , other : & & ' b mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1069
+ fn ne ( & self , other : & & mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1070
1070
}
1071
1071
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1072
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialOrd < & ' b mut B > for & ' a mut A where A : PartialOrd < B > {
1072
+ impl < A : ?Sized , B : ?Sized > PartialOrd < & mut B > for & mut A where A : PartialOrd < B > {
1073
1073
#[ inline]
1074
- fn partial_cmp ( & self , other : & & ' b mut B ) -> Option < Ordering > {
1074
+ fn partial_cmp ( & self , other : & & mut B ) -> Option < Ordering > {
1075
1075
PartialOrd :: partial_cmp ( * self , * other)
1076
1076
}
1077
1077
#[ inline]
1078
- fn lt ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: lt ( * self , * other) }
1078
+ fn lt ( & self , other : & & mut B ) -> bool { PartialOrd :: lt ( * self , * other) }
1079
1079
#[ inline]
1080
- fn le ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: le ( * self , * other) }
1080
+ fn le ( & self , other : & & mut B ) -> bool { PartialOrd :: le ( * self , * other) }
1081
1081
#[ inline]
1082
- fn ge ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: ge ( * self , * other) }
1082
+ fn ge ( & self , other : & & mut B ) -> bool { PartialOrd :: ge ( * self , * other) }
1083
1083
#[ inline]
1084
- fn gt ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: gt ( * self , * other) }
1084
+ fn gt ( & self , other : & & mut B ) -> bool { PartialOrd :: gt ( * self , * other) }
1085
1085
}
1086
1086
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1087
1087
impl < A : ?Sized > Ord for & mut A where A : Ord {
@@ -1092,18 +1092,18 @@ mod impls {
1092
1092
impl < A : ?Sized > Eq for & mut A where A : Eq { }
1093
1093
1094
1094
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1095
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b mut B > for & ' a A where A : PartialEq < B > {
1095
+ impl < A : ?Sized , B : ?Sized > PartialEq < & mut B > for & A where A : PartialEq < B > {
1096
1096
#[ inline]
1097
- fn eq ( & self , other : & & ' b mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1097
+ fn eq ( & self , other : & & mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1098
1098
#[ inline]
1099
- fn ne ( & self , other : & & ' b mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1099
+ fn ne ( & self , other : & & mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1100
1100
}
1101
1101
1102
1102
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1103
- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b B > for & ' a mut A where A : PartialEq < B > {
1103
+ impl < A : ?Sized , B : ?Sized > PartialEq < & B > for & mut A where A : PartialEq < B > {
1104
1104
#[ inline]
1105
- fn eq ( & self , other : & & ' b B ) -> bool { PartialEq :: eq ( * self , * other) }
1105
+ fn eq ( & self , other : & & B ) -> bool { PartialEq :: eq ( * self , * other) }
1106
1106
#[ inline]
1107
- fn ne ( & self , other : & & ' b B ) -> bool { PartialEq :: ne ( * self , * other) }
1107
+ fn ne ( & self , other : & & B ) -> bool { PartialEq :: ne ( * self , * other) }
1108
1108
}
1109
1109
}
0 commit comments