rust/src/libcoretest
Tobias Bucher 4d2709def2 Implement FixedSizeArray for all fixed size arrays
Do so by using the fact that fixed size arrays (like `[u8; 8]` can be coerced
to slices `&[u8]`, this is expressed through the trait `Unsize<[T]>` that all
fixed size arrays implement.
2015-08-31 10:55:39 +02:00
..
fmt
hash Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
num Auto merge of #27871 - alexcrichton:stabilize-libcore, r=aturon 2015-08-22 09:59:07 +00:00
any.rs
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
char.rs Auto merge of #27808 - SimonSapin:utf16decoder, r=alexcrichton 2015-08-27 00:41:13 +00:00
clone.rs
cmp.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
intrinsics.rs
iter.rs remove calls to deprecated iter::order functions 2015-08-27 13:30:37 -04:00
lib.rs Implement FixedSizeArray for all fixed size arrays 2015-08-31 10:55:39 +02:00
mem.rs
nonzero.rs
ops.rs
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 O(1) count,nth,last for slice::Windows,Chunks(Mut) 2015-08-12 08:34:51 -07:00
str.rs
tuple.rs