Skip to content

Commit 9eb723d

Browse files
committed
define Eq,TotalEq,Ord,TotalOrd for &mut T
Also Show, which is useful in assertions. Fixes #14074
1 parent 72fc4a5 commit 9eb723d

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

src/libcore/cmp.rs

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -218,6 +218,29 @@ mod impls {
218218
}
219219
impl<'a, T: TotalEq> TotalEq for &'a T {}
220220

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+
221244
// @ pointers
222245
impl<T:Eq> Eq for @T {
223246
#[inline]
@@ -278,6 +301,15 @@ mod test {
278301
assert_eq!(12u.cmp(-5), Greater);
279302
}
280303

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+
281313
#[test]
282314
fn test_ordering_order() {
283315
assert!(Less < Equal);

src/libstd/fmt/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1124,6 +1124,9 @@ impl<T: Show> Show for Box<T> {
11241124
impl<'a, T: Show> Show for &'a T {
11251125
fn fmt(&self, f: &mut Formatter) -> Result { secret_show(*self, f) }
11261126
}
1127+
impl<'a, T: Show> Show for &'a mut T {
1128+
fn fmt(&self, f: &mut Formatter) -> Result { secret_show(*self, f) }
1129+
}
11271130

11281131
impl Bool for bool {
11291132
fn fmt(&self, f: &mut Formatter) -> Result {

0 commit comments

Comments
 (0)