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