concat

object Collection {
  def concat[A](as: Collection[A]*): Collection[A]
}

concat は、任意の数のコレクションを受け取り、それらの要素を使って1つのコレクションを作成します。