seq.filter(predicate).size == 0 seq.filter(otherPredicate).length > 0
seq.filter(predicate).size == 0
seq.filter(otherPredicate).length > 0
After:
!seq.exists(predicate) seq.exists(otherPredicate)
!seq.exists(predicate)
seq.exists(otherPredicate)