summary refs log tree commit diff
path: root/src/libcoretest/array.rs
AgeCommit message (Collapse)AuthorLines
2015-08-31Implement `FixedSizeArray` for all fixed size arraysTobias Bucher-0/+28
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.