summaryrefslogtreecommitdiff
path: root/test/files/run/withIndex.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2009-05-27 19:35:02 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2009-05-27 19:35:02 +0000
commitcc5e79c9ec9cea8d0f22020b528877d8f6e00153 (patch)
tree94e43f77c7b7271b3d0b6f9fb7372ae83b39360d /test/files/run/withIndex.scala
parent4b8be5d8bec86358276407d6521c41702ccda835 (diff)
downloadscala-cc5e79c9ec9cea8d0f22020b528877d8f6e00153.tar.gz
scala-cc5e79c9ec9cea8d0f22020b528877d8f6e00153.tar.bz2
scala-cc5e79c9ec9cea8d0f22020b528877d8f6e00153.zip
In "Iterable" and in all its subclasses, "itera...
In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
Diffstat (limited to 'test/files/run/withIndex.scala')
-rw-r--r--test/files/run/withIndex.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/withIndex.scala b/test/files/run/withIndex.scala
index f0c3e7a468..3b9c9e84e5 100644
--- a/test/files/run/withIndex.scala
+++ b/test/files/run/withIndex.scala
@@ -2,8 +2,8 @@ object Test {
def main(args: Array[String]) = {
val ary: Array[String] = Array("a", "b", "c")
val lst: List[String] = List("a", "b", "c")
- val itr: Iterator[String] = lst.elements
- val str: Stream[String] = Stream.fromIterator(lst.elements)
+ val itr: Iterator[String] = lst.iterator
+ val str: Stream[String] = Stream.fromIterator(lst.iterator)
Console.println(ary.zipWithIndex.toList)
Console.println(lst.zipWithIndex.toList)
@@ -18,7 +18,7 @@ object Test {
val emptyArray = new Array[String](0)
val emptyList: List[String] = Nil
- val emptyIterator = emptyList.elements
+ val emptyIterator = emptyList.iterator
val emptyStream: Stream[String] = Stream.empty
Console.println(emptyArray.zipWithIndex.toList)