From 4d2709def2ecd7f4752a598a01280eef17be08e1 Mon Sep 17 00:00:00 2001 From: Tobias Bucher Date: Sat, 29 Aug 2015 18:30:05 +0200 Subject: 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. --- src/libcore/array.rs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/libcore/array.rs') diff --git a/src/libcore/array.rs b/src/libcore/array.rs index 85a2d2c23f8..0959029b953 100644 --- a/src/libcore/array.rs +++ b/src/libcore/array.rs @@ -26,7 +26,7 @@ use default::Default; use fmt; use hash::{Hash, self}; use iter::IntoIterator; -use marker::{Copy, Sized}; +use marker::{Copy, Sized, Unsize}; use option::Option; use slice::{Iter, IterMut, SliceExt}; @@ -41,21 +41,21 @@ pub trait FixedSizeArray { fn as_mut_slice(&mut self) -> &mut [T]; } +impl> FixedSizeArray for A { + #[inline] + fn as_slice(&self) -> &[T] { + self + } + #[inline] + fn as_mut_slice(&mut self) -> &mut [T] { + self + } +} + // macro for implementing n-ary tuple functions and operations macro_rules! array_impls { ($($N:expr)+) => { $( - impl FixedSizeArray for [T; $N] { - #[inline] - fn as_slice(&self) -> &[T] { - &self[..] - } - #[inline] - fn as_mut_slice(&mut self) -> &mut [T] { - &mut self[..] - } - } - impl AsRef<[T]> for [T; $N] { #[inline] fn as_ref(&self) -> &[T] { -- cgit 1.4.1-3-g733a5