Donald Raab
Donald Raab
https://github.com/eclipse/eclipse-collections/pull/1035#discussion_r532282989
Now that we have primitive versions of `flatCollect` that take target primitive collections on `RichIterable`, we can improve the symmetry on `LazyIterable` by adding primitive versions of `flatCollect` that are...
There are three methods missing on `ImmutableMapFactory` interface. These are the methods on `MutableMapFactory`. ``` MutableMap ofMap(Map
Today we have stream() and parallelStream() on MutableCollection (inherited from java.util.Collection) and ImmutableCollection. We should move these methods up to RichIterable.
Today a LinkedHashSet can be used by wrapping a JDK LinkedHashSet with a SetAdapter as follows. `Sets.adapt(new LinkedHashSet());` This works fine for most cases but it would be nicer if...
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...