@@ -78,7 +78,7 @@ impl<'a> BitAnd<&'a Treemap> for Treemap {
7878 /// ```
7979 #[ inline]
8080 fn bitand ( self , other : & ' a Treemap ) -> Treemap {
81- self . and ( & other)
81+ self . and ( other)
8282 }
8383}
8484
@@ -106,7 +106,7 @@ impl<'a, 'b> BitAnd<&'a Treemap> for &'b Treemap {
106106 /// ```
107107 #[ inline]
108108 fn bitand ( self , other : & ' a Treemap ) -> Treemap {
109- self . and ( & other)
109+ self . and ( other)
110110 }
111111}
112112
@@ -201,7 +201,7 @@ impl<'a> BitOr<&'a Treemap> for Treemap {
201201 /// ```
202202 #[ inline]
203203 fn bitor ( self , other : & ' a Treemap ) -> Treemap {
204- self . or ( & other)
204+ self . or ( other)
205205 }
206206}
207207
@@ -229,7 +229,7 @@ impl<'a, 'b> BitOr<&'a Treemap> for &'b Treemap {
229229 /// ```
230230 #[ inline]
231231 fn bitor ( self , other : & ' a Treemap ) -> Treemap {
232- self . or ( & other)
232+ self . or ( other)
233233 }
234234}
235235
@@ -319,7 +319,7 @@ impl<'a> BitXor<&'a Treemap> for Treemap {
319319 /// ```
320320 #[ inline]
321321 fn bitxor ( self , other : & ' a Treemap ) -> Treemap {
322- self . xor ( & other)
322+ self . xor ( other)
323323 }
324324}
325325
@@ -351,7 +351,7 @@ impl<'a, 'b> BitXor<&'a Treemap> for &'b Treemap {
351351 /// ```
352352 #[ inline]
353353 fn bitxor ( self , other : & ' a Treemap ) -> Treemap {
354- self . xor ( & other)
354+ self . xor ( other)
355355 }
356356}
357357
@@ -449,7 +449,7 @@ impl<'a> Sub<&'a Treemap> for Treemap {
449449 /// ```
450450 #[ inline]
451451 fn sub ( self , other : & ' a Treemap ) -> Treemap {
452- self . andnot ( & other)
452+ self . andnot ( other)
453453 }
454454}
455455
@@ -483,7 +483,7 @@ impl<'a, 'b> Sub<&'a Treemap> for &'b Treemap {
483483 /// ```
484484 #[ inline]
485485 fn sub ( self , other : & ' a Treemap ) -> Treemap {
486- self . andnot ( & other)
486+ self . andnot ( other)
487487 }
488488}
489489
0 commit comments