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.