Replaces fold with forall if possible.
Before:

List("a").foldLeft(true)((x,y) => x && isGood(y))

After:

List("a").forall(isGood)