rust/src/libcore/box.rs

19 lines
381 B
Rust
Raw Normal View History

export ptr_eq;
#[doc(
brief = "Determine if two shared boxes point to the same object"
)]
2012-03-06 21:15:31 -06:00
pure fn ptr_eq<T>(a: @T, b: @T) -> bool unchecked {
ptr::addr_of(*a) == ptr::addr_of(*b)
}
2012-01-17 19:28:21 -06:00
#[test]
fn test() {
let x = @3;
let y = @3;
assert (ptr_eq::<int>(x, x));
assert (ptr_eq::<int>(y, y));
assert (!ptr_eq::<int>(x, y));
assert (!ptr_eq::<int>(y, x));
}