English 中文(简体)
Scala Collections - zip
  • 时间:2024-10-18

Scala Collections - Zip Method


Previous Page Next Page  

zip() method is a member of IterableLike trait, it is used to merge a collection to current collection and result is a collection of pair of tuple elements from both collections.

Syntax

The following is the syntax of zip method.


def zip[B](that: GenIterable[B]): Iterable[(A, B)]

Here, zip method takes a collection as parameter. This method returns the updated collection of pair as result.

Usage

Below is an example program of showing how to use zip method −

Example


object Demo {
   def main(args: Array[String]) = {
      val pst = List(1, 2, 3 ,4)
      val pst1 = List("A", "B", "C", "D")
      //apply operation to create a zip of pst
      val pst2 = pst zip pst1
      //print pst
      println(pst2)      
   }
}

Save the above program in Demo.scala. The following commands are used to compile and execute this program.

Command


>scalac Demo.scala
>scala Demo

Output


List((1,A), (2,B), (3,C), (4,D))
Advertisements