about summary refs log tree commit diff
path: root/src/libcore/array.rs
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2015-01-07 22:01:05 -0500
committerJorge Aparicio <japaricious@gmail.com>2015-01-30 10:36:31 -0500
commita65d3f5b98cc94f0a759fbf1a08be9aee0f97883 (patch)
tree727f2112924bbe042cb6a1ea059d163044ace818 /src/libcore/array.rs
parent1a51eb9cca3ae5f815825096de4dfbdc9267f735 (diff)
downloadrust-a65d3f5b98cc94f0a759fbf1a08be9aee0f97883.tar.gz
rust-a65d3f5b98cc94f0a759fbf1a08be9aee0f97883.zip
core: add the `IntoIterator` trait
Diffstat (limited to 'src/libcore/array.rs')
-rw-r--r--src/libcore/array.rs18
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]