2012-08-13 17:11:33 -07:00
|
|
|
// NB: transitionary, de-mode-ing.
|
|
|
|
|
#[forbid(deprecated_mode)];
|
|
|
|
|
#[forbid(deprecated_pattern)];
|
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Interfaces used for comparison.
|
2012-06-06 14:19:52 -07:00
|
|
|
|
2012-08-27 15:44:12 -07:00
|
|
|
// Awful hack to work around duplicate lang items in core test.
|
2012-08-27 14:08:37 -07:00
|
|
|
#[cfg(notest)]
|
|
|
|
|
#[lang="ord"]
|
2012-08-13 16:20:27 -07:00
|
|
|
trait Ord {
|
2012-07-26 14:42:44 -07:00
|
|
|
pure fn lt(&&other: self) -> bool;
|
2012-08-29 19:23:15 -07:00
|
|
|
pure fn le(&&other: self) -> bool;
|
|
|
|
|
pure fn ge(&&other: self) -> bool;
|
|
|
|
|
pure fn gt(&&other: self) -> bool;
|
2012-06-06 14:19:52 -07:00
|
|
|
}
|
|
|
|
|
|
2012-08-27 15:44:12 -07:00
|
|
|
#[cfg(test)]
|
|
|
|
|
trait Ord {
|
|
|
|
|
pure fn lt(&&other: self) -> bool;
|
2012-08-29 19:23:15 -07:00
|
|
|
pure fn le(&&other: self) -> bool;
|
|
|
|
|
pure fn ge(&&other: self) -> bool;
|
|
|
|
|
pure fn gt(&&other: self) -> bool;
|
2012-08-27 15:44:12 -07:00
|
|
|
}
|
|
|
|
|
|
2012-08-27 14:08:37 -07:00
|
|
|
#[cfg(notest)]
|
|
|
|
|
#[lang="eq"]
|
2012-08-13 16:20:27 -07:00
|
|
|
trait Eq {
|
2012-07-26 14:42:44 -07:00
|
|
|
pure fn eq(&&other: self) -> bool;
|
2012-09-07 12:06:02 -07:00
|
|
|
pure fn ne(&&other: self) -> bool;
|
2012-06-06 14:19:52 -07:00
|
|
|
}
|
|
|
|
|
|
2012-08-27 15:44:12 -07:00
|
|
|
#[cfg(test)]
|
|
|
|
|
trait Eq {
|
|
|
|
|
pure fn eq(&&other: self) -> bool;
|
2012-09-07 12:06:02 -07:00
|
|
|
pure fn ne(&&other: self) -> bool;
|
2012-08-27 15:44:12 -07:00
|
|
|
}
|
|
|
|
|
|
2012-08-13 16:20:27 -07:00
|
|
|
pure fn lt<T: Ord>(v1: &T, v2: &T) -> bool {
|
2012-08-27 16:26:35 -07:00
|
|
|
v1.lt(v2)
|
2012-08-02 15:42:56 -07:00
|
|
|
}
|
|
|
|
|
|
2012-08-13 16:20:27 -07:00
|
|
|
pure fn le<T: Ord Eq>(v1: &T, v2: &T) -> bool {
|
2012-08-27 16:26:35 -07:00
|
|
|
v1.lt(v2) || v1.eq(v2)
|
2012-08-02 15:42:56 -07:00
|
|
|
}
|
|
|
|
|
|
2012-08-13 16:20:27 -07:00
|
|
|
pure fn eq<T: Eq>(v1: &T, v2: &T) -> bool {
|
2012-08-27 16:26:35 -07:00
|
|
|
v1.eq(v2)
|
2012-08-02 15:42:56 -07:00
|
|
|
}
|
2012-08-29 19:23:15 -07:00
|
|
|
|
2012-09-07 12:06:02 -07:00
|
|
|
pure fn ne<T: Eq>(v1: &T, v2: &T) -> bool {
|
|
|
|
|
v1.ne(v2)
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-29 19:23:15 -07:00
|
|
|
pure fn ge<T: Ord>(v1: &T, v2: &T) -> bool {
|
|
|
|
|
v1.ge(v2)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pure fn gt<T: Ord>(v1: &T, v2: &T) -> bool {
|
|
|
|
|
v1.gt(v2)
|
|
|
|
|
}
|
|
|
|
|
|