Re: TypeVariable problems

2016-05-02 Thread Martin Neumann
Hi Aljosha Thanks for your answer! I tried using returns but it does not work since the only place where I could call it is within the function that has all the generic types so there is no useful type hint to give. I could make the user hand over the class definition for the type as well but that

Re: TypeVariable problems

2016-05-02 Thread Aljoscha Krettek
Hi, for user functions that have generics, such as you have, you have to manually specify the types somehow. This can either be done using InputTypeConfigurable/OutputTypeConfigurable or maybe using stream.returns(). Cheers, Aljoscha On Fri, 29 Apr 2016 at 12:25 Martin Neumann wrote: > Hej, > >