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.
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] -...
Bumps org.eclipse.cbi.maven.plugins:eclipse-jarsigner-plugin from 1.3.2 to 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...
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...
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...
Bumps org.apache.maven:maven-core from 3.9.9 to 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...
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...
**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**:...