filterNot

trait Collection[A] {
  def filterNot(p: (A) => Boolean): Collection[A]
}

filterNot は、このコレクションの要素で述語 p を満たさないものを残し、残りを捨てたコレクションを作成します。