values
trait Map[K, V] { def values: Iterable[V] }
values は、この Map の値を列挙する Iterator を作成します。
Map
Iterator