summaryrefslogblamecommitdiff
path: root/test/files/run/withIndex.scala
blob: d06dde89f0bb62b768420027ae5701e50f244648 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                               





                                               



                                          
                                  



                                                      
                                                    

   
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)

    Console.println(ary.zipWithIndex.toList)
    Console.println(lst.zipWithIndex.toList)
    Console.println(itr.zipWithIndex.toList)
    Console.println(str.zipWithIndex.toList)
    assert {
      ary.zipWithIndex match {
        case _: Array[Pair[String,Int]] => true
        case _ => false
      }
    }

    val emptyArray = new Array[String](0)
    val emptyList: List[String] = Nil
    val emptyIterator = emptyList.elements
    val emptyStream = Stream.empty

    Console.println(emptyArray.zipWithIndex.toList)
    Console.println(emptyList.zipWithIndex.toList)
    Console.println(emptyIterator.zipWithIndex.toList)
    Console.println(emptyStream.zipWithIndex.toList)
  }
}