Replaces map and getOrElse(false/true) with exists/forall.

Before:

option.map(p).getOrElse(false)
option.map(p).getOrElse(true)

After:
option.exists(p)
option.forall(p)