rust/src/libcoretest
Kamal Marhubi c5f73ed80c Implement fmt::Pointer for pointers to unsized types
This allows printing pointers to unsized types with the {:p} formatting
directive. The following impls are extended to unsized types:
 - impl<'a, T: ?Sized> Pointer for &'a T
 - impl<'a, T: ?Sized> Pointer for &'a mut T
 - impl<T: ?Sized> Pointer for *const T
 - impl<T: ?Sized> Pointer for *mut T
 - impl<T: ?Sized> fmt::Pointer for Box<T>
 - impl<T: ?Sized> fmt::Pointer for Rc<T>
 - impl<T: ?Sized> fmt::Pointer for Arc<T>
2016-02-08 14:08:19 -05:00
..
fmt Implement fmt::Pointer for pointers to unsized types 2016-02-08 14:08:19 -05:00
hash
num Auto merge of #31410 - rkruppe:issue31109, r=pnkfelix 2016-02-06 13:16:03 +00:00
any.rs Implement Any for unsized types 2016-01-14 23:02:32 -08:00
array.rs
atomic.rs
cell.rs
char.rs Make style more uniform, add tests for specialization of .last(), move tests to libcoretest 2016-01-16 09:12:09 +01:00
clone.rs
cmp.rs
intrinsics.rs
iter.rs test: Deny warnings in {core,collections}test 2016-01-30 16:19:37 -08:00
lib.rs test: Deny warnings in {core,collections}test 2016-01-30 16:19:37 -08:00
mem.rs
nonzero.rs
ops.rs
option.rs
ptr.rs
result.rs
slice.rs Avoid bounds check for slice binary search 2016-01-22 15:08:27 -02:00
str.rs
tuple.rs