summary refs log tree commit diff
path: root/src/libstd/borrow.rs
AgeCommit message (Collapse)AuthorLines
2013-09-18std::borrow: Use raw pointer comparison for `ref_eq`blake2-ppc-1/+15
Compare as `*T` in `ref_eq` instead of casting to uint, to match what std::ptr does.
2013-08-04std: implement Total{Ord,Eq} for pointers.Huon Wilson-0/+12
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-8/+8
2013-06-02ptr: split out borrowed pointer utilitiesDaniel Micay-0/+60
The ptr module is intended to be for raw pointers. Closes #3111