I've downloaded JDK8.0 early access release few days ago (file name: jdk-8-ea-bin-b82-linux-x64-21_mar_2013.tar.gz
)
I can find java.util.function
package. (only contains Interfaces), and it is do lambda perfectly. (OK)
But, What I search for but couldn't find is the list/map manipulations functions (forEach
, filter
, map
, ...etc).
So tutorials says I will find in java.util.List
interface, and others refers to non-existed java.util.Stream
class. But I Couldn't find any new methods in the interface, nor could find this new class.