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

Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.2.7 to 3.2.8. Release notes Sourced from org.apache.maven.plugins:maven-gpg-plugin's releases. 3.2.8 πŸ› Bug Fixes Make empty classifier null (not empty string) (#287) @​cstamas πŸ“ Documentation updates [MNGSITE-529] -...

dependencies
java

Bumps org.eclipse.cbi.maven.plugins:eclipse-jarsigner-plugin from 1.3.2 to 1.5.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.eclipse.cbi.maven.plugins:eclipse-jarsigner-plugin&package-manager=maven&previous-version=1.3.2&new-version=1.5.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands...

dependencies
java

Bumps `slf4j.version` from 2.0.16 to 2.0.17. Updates `org.slf4j:slf4j-api` from 2.0.16 to 2.0.17 Updates `org.slf4j:slf4j-nop` from 2.0.16 to 2.0.17 Updates `org.slf4j:slf4j-simple` from 2.0.16 to 2.0.17 You can trigger a rebase of...

dependencies
java

Bumps [com.carrotsearch:hppc](https://github.com/carrotsearch/hppc) from 0.9.1 to 0.10.0. Release notes Sourced from com.carrotsearch:hppc's releases. Release 0.10.0 This release adds a few utility methods and fixes a few problems with clashing method names...

dependencies
java

Bumps org.apache.maven:maven-core from 3.9.9 to 3.9.11. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven:maven-core&package-manager=maven&previous-version=3.9.9&new-version=3.9.11)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands...

dependencies
java

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. Release notes Sourced from actions/upload-artifact's releases. v5.0.0 What's Changed BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but...

dependencies
github_actions

**Bug Reproduction Unit Test** @Test void raceConditionReproductionTest() { ConcurrentMap eclipseMap = new org.eclipse.collections.impl.map.mutable.ConcurrentHashMap(); IntStream.range(0, 200000).boxed() .forEach(i -> eclipseMap.put(i, String.valueOf(i))); CompletableFuture.allOf( CompletableFuture.runAsync( () -> eclipseMap.values().stream().peek(s -> randomWait()).toArray(String[]::new)), CompletableFuture.runAsync( () -> IntStream.range(200000,...

## Add EnumSet and EnumMap implementations to Eclipse Collections ### Problem Statement Eclipse Collections currently lacks dedicated implementations for enum-based collections, while the JCF provides `EnumSet` and `EnumMap` as memory-efficient...

# Add NavigableSet support to SortedSetIterable ## πŸ“‹ Summary Adds full `NavigableSet` support to `SortedSetIterable` hierarchy, resolving issue #1746. ## 🎯 What's Changed ### New Methods Added - **Navigation methods**:...