foreach

trait Collection[A] {
  def foreach(f: (A) => Unit): Unit
}

foreach は、関数 f をこのコレクションの各要素に適用していき、結果はいずれも捨てます。 この関数は () を返します。