Replaces find and isDefined with exists.
Before:
sequence.find(myValueIsGoodEnough).isDefined
After:
sequence.exists(myValueIsGoodEnough)