filterheadOption의 사용을 보고하고 find로 바꿉니다.

예:


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

빠른 수정 적용 후:


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