VOOZH about

URL: https://www.geeksforgeeks.org/scala/how-to-get-all-the-values-from-a-scala-map/

⇱ How to get all the values from a Scala map - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to get all the values from a Scala map

Last Updated : 29 Jul, 2019
In order to get all the values from a Scala map, we need to use values method (to get all the values as an Iterable) and if we want to get the values as an iterator, we need to use valuesIterator method. Now, lets check some examples. Example #1:
Output:
MapLike(geeks, for, cs)
Here, values method is utilized. Example #2:
Output:
non-empty iterator
Here, valuesIterator method is utilized.
Comment
Article Tags:
Article Tags:

Explore