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 Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
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 Implement FixedSizeArray for all fixed size arrays 2015-08-31 10:55:39 +02:00
atomic.rs core: Shuffle around float parsing 2015-08-17 19:35:52 -07:00
cell.rs Miscellaneous cleanup for old issues. 2015-09-20 11:37:08 +01:00
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 Add unused modules to libcoretest 2015-10-16 21:15:23 +02:00
cmp.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
intrinsics.rs Add unused modules to libcoretest 2015-10-16 21:15:23 +02:00
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 std: Remove #[old_orphan_check] from PartialEq 2015-03-31 13:39:14 -07:00
nonzero.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
ops.rs Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
option.rs core: Implement IntoIterator for Option and Result references 2015-08-27 18:48:41 +02:00
ptr.rs Replace many uses of mem::transmute with more specific functions 2015-08-09 22:05:22 +02:00
result.rs core: Implement IntoIterator for Option and Result references 2015-08-27 18:48:41 +02:00
slice.rs Avoid bounds check for slice binary search 2016-01-22 15:08:27 -02:00
str.rs Moved coretest::str tests into collectiontest::str 2015-04-05 18:52:58 +02:00
tuple.rs Deprecating i/u suffixes in libcoretest 2015-02-10 22:56:31 +00:00