Replaces map and getOrElse(false) with exists.
Before:
option.map(myValueIsGoodEnough).getOrElse(false)
After:
option.exists(myValueIsGoodEnough)