The anyMatch operation will return true if it finds an element - the noneMatch operation will return false it if finds a matching element.
The anyMatch operation wil
Same reason you have a != b, instead of only supporting ! (a == b):
a != b
! (a == b)