collect

trait Collection[A] {
  def collect[B](f: PartialFunction[A, B]): Collection[B]
}

collect builds a collection using as elements the result of applying the partial function f to those elements for which f is defined and discarding the rest of elements.