Donald Raab
Donald Raab
## Feature Request ### Description of Problem: Most of the repositories for Legend currently depend on Eclipse Collections 10.2 which is over two years old. The latest 10.x release was...
Old Reference Guide: https://github.com/eclipse/eclipse-collections/blob/master/docs/guide.md#-primitive-collections 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-collections
The methods `anySatisfy`, `allSatisfy` and `noneSatisfy` should be optimized on `UnifiedMapWithHashingStrategy` similar to how they are optimized on `UnifiedMap`.
This is a performance bug. There should be an optimization similar to the way collect is implemented for HashBag (see below). ``` if (target instanceof MutableBagIterable) { MutableBagIterable targetBag =...
We have injectIntoIndex on primitive OrderedIterables (e.g. `OrderedIntIterable`), but not on the object equivalent `OrderedIterable`.
There are now optimized versions of `containsAny` and `containsNone` on `RichIterable`. Similar optimizations could be implemented for `containsAll`, as they have been for primitive collections. It is more work for...
Java 17 will be released on September 14, 2021. Java 11 has been out since September 25, 2018. Java 8 was released in March, 2014. Eclipse Collections major releases are...
I was working in the Multimap hierarchy and found we have two deprecated TreeBagMultimap classes. One class has been deprecated since 5.0 and the other was deprecated in 7.0. I...
There is a method `forEachKeyMultiValues` on `Multimap` with the following signature: `void forEachKeyMultiValues(Procedure2
There is a method toStack on `OrderedIterable`, but no equivalent toStack method on `OrderedIterable.`