Into

Doug Lea dl at cs.oswego.edu
Wed Dec 26 09:07:02 PST 2012


On 12/26/12 11:52, Remi Forax wrote:

> No, I think it's better to have only toList() and toSet(),
> the result of stream.sorted().toSet() will return a NavigableSet/SortedSet.
> The idea is that the method to* will choose the best implementation using the
> property of the pipeline.
>
> If you want a specific implementation, then use into().

Sorry, I still don't buy it. If you want a specific implementation,
then my sense is that you will end up writing something like
the following anyway:

   Stream s = ...;
   SomeCollection dest = ...
   // add s to dest via (par/seq) forEach or loop or whatever

so why bother adding all the support code that people will probably
not use anyway in custom situations because, well, they are custom
situations. So to me, Reducers etc are in the maybe-nice-to-have
category.

-Doug




More information about the lambda-libs-spec-observers mailing list