keys
trait Map[K, V] { def keys: Iterable[V] }
keys creates an Iterator to iterate this Map's keys.
Iterator
Map