Uses of Interface
org.javimmutable.collections.Func3

Packages that use Func3
org.javimmutable.collections.util   
 

Uses of Func3 in org.javimmutable.collections.util
 

Methods in org.javimmutable.collections.util that return Func3
static
<P1,P2,P3,P4,R>
Func3<P2,P3,P4,R>
Curry.func3(P1 param1, Func4<P1,P2,P3,P4,R> function)
          Produces a Curried Func3 that calls the provided Func4 passing it the fixed parameter param1 along with the actual parameters to the apply() method.
static
<P1,P2,P3,R>
Func3<P1,P2,P3,R>
ReflectionFunctions.method(Object obj, String name, Class<P1> arg1Class, Class<P2> arg2Class, Class<P3> arg3Class)
          Returns a Func3 instance that calls the specified non-static method on the specified java object.
static
<P1,P2,OT,R>
Func3<P1,P2,OT,R>
ReflectionFunctions.method(String name, Class<P1> arg1Class, Class<P2> arg2Class, Class<OT> klass)
          Returns a Func3 instance that calls the specified non-static method on a java object passed as the last parameter of the Func3.
static
<P1,P2,P3,R>
Func3<P1,P2,P3,R>
ReflectionFunctions.staticMethod(Class klass, String name, Class<P1> arg1Class, Class<P2> arg2Class, Class<P3> arg3Class)
          Returns a Func3 instance that calls the specified static method on the specified java object.
 

Methods in org.javimmutable.collections.util with parameters of type Func3
static
<P1,P2,P3,R>
Func1<P3,R>
Curry.func1(P1 param1, P2 param2, Func3<P1,P2,P3,R> function)
          Produces a Curried Func1 that calls the provided Func3 passing it the fixed parameters param1 and param2 along with the actual parameters to the apply() method.
static
<P1,P2,P3,R>
Func2<P2,P3,R>
Curry.func2(P1 param1, Func3<P1,P2,P3,R> function)
          Produces a Curried Func2 that calls the provided Func3 passing it the fixed parameter param1 along with the actual parameters to the apply() method.
static
<P1,P2,P3,R>
Func1<P3,R>
Curry.of(Func3<P1,P2,P3,R> function, P1 param1, P2 param2)
          Produces a Curried Func1 that calls the provided Func3 passing it the fixed parameters param1-param2 along with the actual parameter to the apply() method as the third parameter.
 



Copyright © 2014 Burton Computer Corporation. All rights reserved.