When following major Java releases, we usually focus on bold and controversial JEPs while humble and tiny changes get introduced unnoticeably. One of such changes…
Leave a CommentCategory: Java
Sorting a Stream instance is straightforward and involves just a single API method call. However, achieving the opposite is not that easy.
In this article, we’ll see how to shuffle a Stream in Java – eagerly and lazily using Stream Collectors factories, and custom Spliterators.
Leave a CommentThe conciseness of Java 8 Lambda Expressions sheds a new light on classic GoF design patterns. By leveraging functional programming we can get the same…
Leave a Comment