1// there is no meaning to remove an item from a stream
2// It only make sense to remove an item from a collection.
3// Internally, removeIf uses an Iterator to iterate over the list and match
4// the elements using the predicate
5itemList.removeIf(isQualified);