Java Stream - what is the difference between filter() and dropWhile()
With Java 9 method dropWhile() was added to the Stream API. When I read the documentation, I found out that it is very similar to Java 8 filter() method.
Am I missing something? What is the difference between these methods?