diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-11-28 12:38:53 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-11-28 13:17:33 -0800 |
| commit | fc06114ddfd2bcdbc4f29076c226a7a1d66ea8d6 (patch) | |
| tree | bd9de2c450f23b8ff0e09130ab59d784ace5b5e3 /src/libcore/ptr.rs | |
| parent | 669fbddc4435a9ab152332df06a7fcca789c8059 (diff) | |
| parent | 8179e268efd86ae5c1bcf21b4f8d4e01eea7c193 (diff) | |
| download | rust-fc06114ddfd2bcdbc4f29076c226a7a1d66ea8d6.tar.gz rust-fc06114ddfd2bcdbc4f29076c226a7a1d66ea8d6.zip | |
Merge remote-tracking branch 'brson/companion' into incoming
Conflicts: src/compiletest/compiletest.rs src/libcargo/cargo.rs src/libcore/core.rs src/librustc/rustc.rs src/librustdoc/rustdoc.rc
Diffstat (limited to 'src/libcore/ptr.rs')
| -rw-r--r-- | src/libcore/ptr.rs | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 7cba022e7c3..d1566735a3f 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -208,75 +208,31 @@ impl<T> *mut T: Ptr<T> { // Equality for pointers impl<T> *const T : Eq { - #[cfg(stage0)] - pure fn eq(other: &*const T) -> bool unsafe { - let a: uint = cast::reinterpret_cast(&self); - let b: uint = cast::reinterpret_cast(&(*other)); - return a == b; - } - #[cfg(stage1)] - #[cfg(stage2)] pure fn eq(&self, other: &*const T) -> bool unsafe { let a: uint = cast::reinterpret_cast(&(*self)); let b: uint = cast::reinterpret_cast(&(*other)); return a == b; } - #[cfg(stage0)] - pure fn ne(other: &*const T) -> bool { !self.eq(other) } - #[cfg(stage1)] - #[cfg(stage2)] pure fn ne(&self, other: &*const T) -> bool { !(*self).eq(other) } } // Comparison for pointers impl<T> *const T : Ord { - #[cfg(stage0)] - pure fn lt(other: &*const T) -> bool unsafe { - let a: uint = cast::reinterpret_cast(&self); - let b: uint = cast::reinterpret_cast(&(*other)); - return a < b; - } - #[cfg(stage1)] - #[cfg(stage2)] pure fn lt(&self, other: &*const T) -> bool unsafe { let a: uint = cast::reinterpret_cast(&(*self)); let b: uint = cast::reinterpret_cast(&(*other)); return a < b; } - #[cfg(stage0)] - pure fn le(other: &*const T) -> bool unsafe { - let a: uint = cast::reinterpret_cast(&self); - let b: uint = cast::reinterpret_cast(&(*other)); - return a <= b; - } - #[cfg(stage1)] - #[cfg(stage2)] pure fn le(&self, other: &*const T) -> bool unsafe { let a: uint = cast::reinterpret_cast(&(*self)); let b: uint = cast::reinterpret_cast(&(*other)); return a <= b; } - #[cfg(stage0)] - pure fn ge(other: &*const T) -> bool unsafe { - let a: uint = cast::reinterpret_cast(&self); - let b: uint = cast::reinterpret_cast(&(*other)); - return a >= b; - } - #[cfg(stage1)] - #[cfg(stage2)] pure fn ge(&self, other: &*const T) -> bool unsafe { let a: uint = cast::reinterpret_cast(&(*self)); let b: uint = cast::reinterpret_cast(&(*other)); return a >= b; } - #[cfg(stage0)] - pure fn gt(other: &*const T) -> bool unsafe { - let a: uint = cast::reinterpret_cast(&self); - let b: uint = cast::reinterpret_cast(&(*other)); - return a > b; - } - #[cfg(stage1)] - #[cfg(stage2)] pure fn gt(&self, other: &*const T) -> bool unsafe { let a: uint = cast::reinterpret_cast(&(*self)); let b: uint = cast::reinterpret_cast(&(*other)); @@ -286,17 +242,9 @@ impl<T> *const T : Ord { // Equality for region pointers impl<T:Eq> &const T : Eq { - #[cfg(stage0)] - pure fn eq(other: & &self/const T) -> bool { return *self == *(*other); } - #[cfg(stage1)] - #[cfg(stage2)] pure fn eq(&self, other: & &self/const T) -> bool { return *(*self) == *(*other); } - #[cfg(stage0)] - pure fn ne(other: & &self/const T) -> bool { return *self != *(*other); } - #[cfg(stage1)] - #[cfg(stage2)] pure fn ne(&self, other: & &self/const T) -> bool { return *(*self) != *(*other); } @@ -304,31 +252,15 @@ impl<T:Eq> &const T : Eq { // Comparison for region pointers impl<T:Ord> &const T : Ord { - #[cfg(stage0)] - pure fn lt(other: & &self/const T) -> bool { *self < *(*other) } - #[cfg(stage1)] - #[cfg(stage2)] pure fn lt(&self, other: & &self/const T) -> bool { *(*self) < *(*other) } - #[cfg(stage0)] - pure fn le(other: & &self/const T) -> bool { *self <= *(*other) } - #[cfg(stage1)] - #[cfg(stage2)] pure fn le(&self, other: & &self/const T) -> bool { *(*self) <= *(*other) } - #[cfg(stage0)] - pure fn ge(other: & &self/const T) -> bool { *self >= *(*other) } - #[cfg(stage1)] - #[cfg(stage2)] pure fn ge(&self, other: & &self/const T) -> bool { *(*self) >= *(*other) } - #[cfg(stage0)] - pure fn gt(other: & &self/const T) -> bool { *self > *(*other) } - #[cfg(stage1)] - #[cfg(stage2)] pure fn gt(&self, other: & &self/const T) -> bool { *(*self) > *(*other) } |
