Reports the usages of filter and size (or length) and suggests replacing them with count.

Example:


  var x: Seq[Int]
  x.filter(p).size

After the quick-fix is applied:


  var x: Seq[Int]
  x.count(p)