We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 236b5a3 commit b030a0bCopy full SHA for b030a0b
1 file changed
types/array.rs
@@ -1,7 +1,7 @@
1
//! Multi-dimensional arrays with per-dimension specifiable lower bounds
2
3
use std::cast;
4
-use std::vec::VecIterator;
+use std::vec;
5
6
/// Information about a dimension of an array
7
#[deriving(Eq, Clone)]
@@ -143,7 +143,7 @@ impl<T> ArrayBase<T> {
143
144
/// Returns an iterator over the values in this array, in the
145
/// higher-dimensional equivalent of row-major order.
146
- pub fn values<'a>(&'a self) -> VecIterator<'a, T> {
+ pub fn values<'a>(&'a self) -> vec::Items<'a, T> {
147
self.data.iter()
148
}
149
0 commit comments