| Constructor and Description |
|---|
RichFunction4(Function4<T1,T2,T3,T4,R> f) |
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T1 v1,
T2 v2,
T3 v3,
T4 v4)
Apply the body of this function to the arguments.
|
F1<T1,Function1<T2,Function1<T3,Function1<T4,R>>>> |
curried()
Creates a curried version of this function.
|
String |
toString()
Creates a String representation of this object.
|
F1<Tuple4<T1,T2,T3,T4>,R> |
tupled()
Creates a tupled version of this function: instead of 4 arguments, it
accepts a single Tuple4 argument.
|
public R apply(T1 v1, T2 v2, T3 v3, T4 v4) throws Exception
public F1<Tuple4<T1,T2,T3,T4>,R> tupled()
public F1<T1,Function1<T2,Function1<T3,Function1<T4,R>>>> curried()
Copyright © 2015. All rights reserved.