diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-07 22:01:05 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-30 10:36:31 -0500 |
| commit | a65d3f5b98cc94f0a759fbf1a08be9aee0f97883 (patch) | |
| tree | 727f2112924bbe042cb6a1ea059d163044ace818 /src/libcore/array.rs | |
| parent | 1a51eb9cca3ae5f815825096de4dfbdc9267f735 (diff) | |
| download | rust-a65d3f5b98cc94f0a759fbf1a08be9aee0f97883.tar.gz rust-a65d3f5b98cc94f0a759fbf1a08be9aee0f97883.zip | |
core: add the `IntoIterator` trait
Diffstat (limited to 'src/libcore/array.rs')
| -rw-r--r-- | src/libcore/array.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs index a81615944fb..ec3d9783255 100644 --- a/src/libcore/array.rs +++ b/src/libcore/array.rs @@ -18,12 +18,14 @@ use clone::Clone; use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering}; use fmt; use hash::{Hash, Hasher, self}; +use iter::IntoIterator; use marker::Copy; #[cfg(stage0)] use ops::{Deref, FullRange}; #[cfg(not(stage0))] use ops::Deref; use option::Option; +use slice::{Iter, IterMut, SliceExt}; // macro for implementing n-ary tuple functions and operations macro_rules! array_impls { @@ -49,6 +51,22 @@ macro_rules! array_impls { } } + impl<'a, T> IntoIterator for &'a [T; $N] { + type Iter = Iter<'a, T>; + + fn into_iter(self) -> Iter<'a, T> { + self.iter() + } + } + + impl<'a, T> IntoIterator for &'a mut [T; $N] { + type Iter = IterMut<'a, T>; + + fn into_iter(self) -> IterMut<'a, T> { + self.iter_mut() + } + } + #[stable(feature = "rust1", since = "1.0.0")] impl<A, B> PartialEq<[B; $N]> for [A; $N] where A: PartialEq<B> { #[inline] |
