values

trait Map[K, V] {
  def values: Iterable[V]
}

values creates an Iterator to iterate this Map's values.