union

trait Collection[A] {
  def union(as: Collection[A]): Collection[A]
}

union は、このコレクションとコレクション as の重複を許す和集合を計算します。