eclipse-collections
eclipse-collections copied to clipboard
Eclipse Collections is a collections framework for Java with optimized data structures and a rich, functional and fluent API.
The code currently in withAll on both mutable and immutable implementations calls toArray on IntStream which if the Stream is very large can be extremely expensive and won't take advantage...
Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.1.2 to 3.2.5. Release notes Sourced from org.apache.maven.plugins:maven-surefire-plugin's releases. 3.2.5 JIRA link Release Notes - Maven Surefire - Version 3.2.5 What's Changed Bump org.htmlunit:htmlunit from 3.8.0 to...
Bumps [org.apache.maven.plugins:maven-release-plugin](https://github.com/apache/maven-release) from 3.0-r1585899 to 3.0.1. Release notes Sourced from org.apache.maven.plugins:maven-release-plugin's releases. 3.0.1 🐛 Bug Fixes [MRELEASE-1123] - Fix for Maven 4 compatibility (#186) @slawekjaranowski [MRELEASE-1114] - Restore interactive mode...
Move test template file to the correct location
Sometimes, one may want to pass a primitive collection into a method that takes a JCF interface. In cases like this, users must transform the primitive collection into an object...
Bumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.1.2 to 3.6.1. Commits 4d18cfb [maven-release-plugin] prepare release maven-dependency-plugin-3.6.1 34348ec [MNG-6847] Use diamond operator 0062083 [MDEP-883] - Upgrade maven-plugin parent to 40 c6973da [MDEP-832] - Remove commons-collections-4...
Bumps [org.apache.maven:maven-core](https://github.com/apache/maven) from 3.8.1 to 3.9.6. Release notes Sourced from org.apache.maven:maven-core's releases. 3.9.6 Release Notes - Maven - Version 3.9.6 Improvement [MNG-7939] - Allow to exclude plugins from validation Dependency...
Bumps [org.hamcrest:hamcrest-library](https://github.com/hamcrest/JavaHamcrest) from 1.3 to 2.2. Release notes Sourced from org.hamcrest:hamcrest-library's releases. hamcrest-java-2.2 Improvements AllOf/AnyOf: Pass the matchers to constructor using varargs ([Issue #245](hamcrest/JavaHamcrest#245)) Matchers.anyOf: Fix generic bounds compatibility for...
https://github.com/eclipse/eclipse-collections/blob/master/docs/2-Collection_Containers.adoc?plain=1 Line 2 shows as 2022, needs to update to 2023.  please assign this ticket to me @donraab !
I discovered there is an overflow error using `sumOfInt` in the following code when the batch size exceeded 536 This code returned the correct sum: ``` long sum = Interval.oneTo(2_000_000)...