Suppose I have a function which takes two parameter.
Function2<T1,T2,R> function;
I want to fix the second parameter and makes it a Function1<T1,R>
.
With Function2.apply(T1 t)
, I can only fix the first parameter, is there a way to fix the second parameter?