count

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

count は、述語 p を満たす要素がこのコレクションに何個あるかを割り出します。