1 2 3 4 5 6 7 8
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; }