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.
Hi, `HashBag` implementations seems to rely on a `MutableObjectIntMap` internally, to optimize for memory it would be useful to be able to call compact on the bag so that the...
The new reference guide is now in Asciidoc. The relevant section is now here: https://github.com/eclipse/eclipse-collections/blob/master/docs/2-Collection_Containers.adoc#primitive-bags Use the Lost and Found Kata as a guide for the iteration patterns that can...
The new reference guide is now in Asciidoc. The relevant section is now here: https://github.com/eclipse/eclipse-collections/blob/master/docs/2-Collection_Containers.adoc#primitive-maps Use the Lost and Found Kata as a guide for the iteration patterns that can...
The new reference guide is now in Asciidoc. The relevant section is now here: https://github.com/eclipse/eclipse-collections/blob/master/docs/2-Collection_Containers.adoc#intinterval Use the Lost and Found Kata as a guide for the iteration patterns that can...
The new reference guide is now in Asciidoc. The relevant section is now here: https://github.com/eclipse/eclipse-collections/blob/master/docs/2-Collection_Containers.adoc#primitive-lists Use the Lost and Found Kata as a guide for the iteration patterns that can...
The new reference guide is now in Asciidoc. The relevant section is now here: https://github.com/eclipse/eclipse-collections/blob/master/docs/2-Collection_Containers.adoc#primitive-stacks Use the Lost and Found Kata as a guide for the iteration patterns that can...
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. Current mutable factory code:...
The upgrade to Java 11 will break compatibility with Java 8. There are a few library and language features that we would like to leverage in Eclipse Collections that were...
Currently, `summaryStatistics` uses the default implementation which does not optimize for duplicates in Bags. It currently iterates over every element in the Bag. The method `summaryStatistics` should be overridden and...
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.8. Release notes Sourced from actions/cache's releases. v3.0.8 What's Changed Fix zstd not working for windows on gnu tar in issues. Allow users to provide...