drop some redundant Ord method implementations
This commit is contained in:
parent
2b035d908b
commit
31fa86511c
3 changed files with 3 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
||||||
// file at the top-level directory of this distribution and at
|
// file at the top-level directory of this distribution and at
|
||||||
// http://rust-lang.org/COPYRIGHT.
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
//
|
//
|
||||||
|
@ -1164,9 +1164,6 @@ impl Ord for Json {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn le(&self, other: &Json) -> bool { !(*other).lt(&(*self)) }
|
|
||||||
fn ge(&self, other: &Json) -> bool { !(*self).lt(other) }
|
|
||||||
fn gt(&self, other: &Json) -> bool { (*other).lt(&(*self)) }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A trait for converting values to JSON
|
/// A trait for converting values to JSON
|
||||||
|
|
|
@ -107,7 +107,7 @@ macro_rules! cmp_impl {
|
||||||
}
|
}
|
||||||
cmp_impl!(impl Eq, eq, ne)
|
cmp_impl!(impl Eq, eq, ne)
|
||||||
cmp_impl!(impl TotalEq, equals)
|
cmp_impl!(impl TotalEq, equals)
|
||||||
cmp_impl!(impl Ord, lt, gt, le, ge)
|
cmp_impl!(impl Ord, lt)
|
||||||
cmp_impl!(impl TotalOrd, cmp -> cmp::Ordering)
|
cmp_impl!(impl TotalOrd, cmp -> cmp::Ordering)
|
||||||
|
|
||||||
impl<T: Clone + Integer + Ord> Orderable for Ratio<T> {
|
impl<T: Clone + Integer + Ord> Orderable for Ratio<T> {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
||||||
// file at the top-level directory of this distribution and at
|
// file at the top-level directory of this distribution and at
|
||||||
// http://rust-lang.org/COPYRIGHT.
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
//
|
//
|
||||||
|
@ -37,18 +37,6 @@ impl cmp::Ord for Identifier {
|
||||||
(&AlphaNumeric(_), _) => false
|
(&AlphaNumeric(_), _) => false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[inline]
|
|
||||||
fn le(&self, other: &Identifier) -> bool {
|
|
||||||
! (other < self)
|
|
||||||
}
|
|
||||||
#[inline]
|
|
||||||
fn gt(&self, other: &Identifier) -> bool {
|
|
||||||
other < self
|
|
||||||
}
|
|
||||||
#[inline]
|
|
||||||
fn ge(&self, other: &Identifier) -> bool {
|
|
||||||
! (self < other)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ToStr for Identifier {
|
impl ToStr for Identifier {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue