eclipse-collections icon indicating copy to clipboard operation
eclipse-collections copied to clipboard

Eclipse Collections is a collections framework for Java with optimized data structures and a rich, functional and fluent API.

Results 234 eclipse-collections issues
Sort by recently updated
recently updated
newest added

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...

enhancement
help wanted
minor-version
good first issue

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...

dependencies
java

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...

dependencies
java

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...

enhancement
help wanted

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...

dependencies
java

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...

dependencies
java

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...

dependencies
java

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. ![image](https://github.com/eclipse/eclipse-collections/assets/87650180/26328e81-2981-4ebf-beb6-e5c9930cd57f) 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)...