Round 1 feedback
Maurizio Cimadamore
maurizio.cimadamore at oracle.com
Thu Feb 14 14:15:32 PST 2013
On 14/02/13 21:56, Michael Nascimento wrote:
> On Thu, Feb 14, 2013 at 2:32 AM, Michael Nascimento <misterm at gmail.com> wrote:
>> Ok, now to a different point of the Multimap discussion. Turning this:
>>
>> Collection<Foo<Bar>> values = fooBySomething.values();
>>
>> into this:
>>
>> Collection<Foo<Bar>> values =
>> fooBySomething.values().stream().<Foo<Bar>>explode((d, foos) ->
>> d.send(foos)).collectUnordered(toList());
>>
>> is pretty ugly
> ...
>
> And it required the explicit parameters above to compile, I know
> realized I haven't highlighted this point.
I guess that's because explode is not the last node in the chain, so it
'cannot' use info from the target type (it has o target-type).
Maurizio
>
> Regards,
> Michael
>
More information about the lambda-dev
mailing list