Round 2 feedback
Maurizio Cimadamore
maurizio.cimadamore at oracle.com
Tue Feb 12 04:31:41 PST 2013
On 12/02/13 12:25, Maurizio Cimadamore wrote:
> On 10/02/13 00:34, Michael Nascimento wrote:
>> - At least here, even simple transformations such as
>> myCollection.parallelStream().map(Functions.string()).collect(Collectors.<String>toList())
>> requires the explicit types;
> b76 contains the very latest inference changes that went in lambda
> repository; so I would expect most of the inference failures to be gone
> (modulo bugs of course).
>
> This program compiles from me (using b76):
>
> import java.util.*;
> import java.util.function.*;
> import java.util.stream.*;
>
> class Test {
> void test(Collection<Integer> myCollection) {
> myCollection.parallelStream().map(Functions.string()).collect(Collectors.<String>toList());
> }
> }
I meant - this compiles w/o explicit type parameters too with b76
Maurizio
>
> What is the type of your variable called 'myCollection' ? Is it possible
> we are missing something here?
>
> Maurizio
>
>
More information about the lambda-dev
mailing list