eclipse / eclipse-collections

Eclipse Collections is a collections framework for Java with optimized data structures and a rich, functional and fluent API.
https://eclipse.dev/collections/
2.45k stars 613 forks source link

Expose specific type of values collection in MutableListMultimap and others #1072

Open victornoel opened 3 years ago

victornoel commented 3 years ago

It would be nice to support methods on MutableListMultimap (and all the others actually) that allows to iterate over the values as MutableList and not only Iterable.

This would be helpful if I want to modify in place the values without creating a new multimap for performance reasons.

saptaswapal commented 3 years ago

Hey @victornoel , I would like to work on this issue, if you don't mind.

victornoel commented 3 years ago

Hi @Sap1996, I'm not part of this project but they are open to contributions so if you do, it would be great :)

victornoel commented 2 years ago

@donraab I believe #1106 (for #1104) solved this ticket, right?