rust/src/lib/box.rs
2011-08-16 15:05:56 -07:00

8 lines
184 B
Rust

export ptr_eq;
fn ptr_eq<T>(a: &@T, b: &@T) -> bool {
let a_ptr: uint = unsafe::reinterpret_cast(a);
let b_ptr: uint = unsafe::reinterpret_cast(b);
ret a_ptr == b_ptr;
}