|
1 |
| -// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT |
| 1 | +// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT |
2 | 2 | // file at the top-level directory of this distribution and at
|
3 | 3 | // http://rust-lang.org/COPYRIGHT.
|
4 | 4 | //
|
@@ -218,6 +218,29 @@ mod impls {
|
218 | 218 | }
|
219 | 219 | impl<'a, T: TotalEq> TotalEq for &'a T {}
|
220 | 220 |
|
| 221 | + // &mut pointers |
| 222 | + impl<'a, T: Eq> Eq for &'a mut T { |
| 223 | + #[inline] |
| 224 | + fn eq(&self, other: &&'a mut T) -> bool { **self == *(*other) } |
| 225 | + #[inline] |
| 226 | + fn ne(&self, other: &&'a mut T) -> bool { **self != *(*other) } |
| 227 | + } |
| 228 | + impl<'a, T: Ord> Ord for &'a mut T { |
| 229 | + #[inline] |
| 230 | + fn lt(&self, other: &&'a mut T) -> bool { **self < **other } |
| 231 | + #[inline] |
| 232 | + fn le(&self, other: &&'a mut T) -> bool { **self <= **other } |
| 233 | + #[inline] |
| 234 | + fn ge(&self, other: &&'a mut T) -> bool { **self >= **other } |
| 235 | + #[inline] |
| 236 | + fn gt(&self, other: &&'a mut T) -> bool { **self > **other } |
| 237 | + } |
| 238 | + impl<'a, T: TotalOrd> TotalOrd for &'a mut T { |
| 239 | + #[inline] |
| 240 | + fn cmp(&self, other: &&'a mut T) -> Ordering { (**self).cmp(*other) } |
| 241 | + } |
| 242 | + impl<'a, T: TotalEq> TotalEq for &'a mut T {} |
| 243 | + |
221 | 244 | // @ pointers
|
222 | 245 | impl<T:Eq> Eq for @T {
|
223 | 246 | #[inline]
|
@@ -278,6 +301,15 @@ mod test {
|
278 | 301 | assert_eq!(12u.cmp(-5), Greater);
|
279 | 302 | }
|
280 | 303 |
|
| 304 | + #[test] |
| 305 | + fn test_mut_int_totalord() { |
| 306 | + assert_eq!((&mut 5u).cmp(&10), Less); |
| 307 | + assert_eq!((&mut 10u).cmp(&5), Greater); |
| 308 | + assert_eq!((&mut 5u).cmp(&5), Equal); |
| 309 | + assert_eq!((&mut -5u).cmp(&12), Less); |
| 310 | + assert_eq!((&mut 12u).cmp(-5), Greater); |
| 311 | + } |
| 312 | + |
281 | 313 | #[test]
|
282 | 314 | fn test_ordering_order() {
|
283 | 315 | assert!(Less < Equal);
|
|
0 commit comments