Reports the usages of filter and headOption and replaces them with find.

Example:


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

After the quick-fix is applied:


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