I have a stream and would like to check if all match a filter. If all match, return true.
true
But, if the stream is empty, I\'d like to return false>
false>
return !stream.filter(Whatever::someCheck).collect(Collectors.toList()).isEmpty()