JAVA 8 Cheat Sheet
Index
Lambda Expression
Collections
Method Expressions
Streams
Optional
Lambda Expression
(int a) -> a * 2; // Calculate the double of a
a -> a * 2; // or simply without type
(a, b) -> a + b; // Sum of 2 parameters
If the lambda is more than o...
vishnuc.hashnode.dev6 min read