Detects if the match statement can be converted to pattern matching anonymous function. For example:
iterable.map(value => value match {
case Some(value) => whenValue(value)
case None => whenNothing()
})

can be converted to


iterable.map {
case Some(value) => whenValue(value)
case None => whenNothing()
}