intersect
trait Collection[A] { def intersect(as: Collection[A]): Collection[A] }
intersect は、このコレクションとコレクション as の重複を許す積集合を計算します。
as