News

In this article, key Eclipse Collections contributors demonstrate techniques for refactoring standard Java code to Eclipse Collections, and demonstrate some of the memory savings you can achieve.
Remove duplicates with Java’s Stream API The fastest and most efficient way to remove items from a List in Java is to use the distinct method of the Stream API. The following code snippet starts with ...