VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-map-toarray-method-with-example/

⇱ Scala Map toArray() method with example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala Map toArray() method with example

Last Updated : 13 Aug, 2019
The toArray() method is utilized to display an array from the Scala map.
Method Definition: def toArray: Array[(A, B)] Return Type: It returns an array from the stated map.
Example #1:
Output:
(3,geeks)
(4,for)
Example #2:
Output:
(3,geeks)
(4,for)
(2,cs)
Comment
Article Tags:

Explore