@FunctionalInterface
public interface Function5<T1,T2,T3,T4,T5,R>
Modifier and Type | Method | Description |
---|---|---|
default R |
apply(Tuple5<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5> args) |
Apply this function to the arguments.
|
R |
apply(T1 v1,
T2 v2,
T3 v3,
T4 v4,
T5 v5) |
Apply this function to the arguments.
|
default Function4<T2,T3,T4,T5,R> |
applyPartially(Tuple1<? extends T1> args) |
Partially apply this function to the arguments.
|
default Function3<T3,T4,T5,R> |
applyPartially(Tuple2<? extends T1,? extends T2> args) |
Partially apply this function to the arguments.
|
default Function2<T4,T5,R> |
applyPartially(Tuple3<? extends T1,? extends T2,? extends T3> args) |
Partially apply this function to the arguments.
|
default Function1<T5,R> |
applyPartially(Tuple4<? extends T1,? extends T2,? extends T3,? extends T4> args) |
Partially apply this function to the arguments.
|
default Function0<R> |
applyPartially(Tuple5<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5> args) |
Partially apply this function to the arguments.
|
default Function4<T2,T3,T4,T5,R> |
applyPartially(T1 v1) |
Partially apply this function to the arguments.
|
default Function3<T3,T4,T5,R> |
applyPartially(T1 v1,
T2 v2) |
Partially apply this function to the arguments.
|
default Function2<T4,T5,R> |
applyPartially(T1 v1,
T2 v2,
T3 v3) |
Partially apply this function to the arguments.
|
default Function1<T5,R> |
applyPartially(T1 v1,
T2 v2,
T3 v3,
T4 v4) |
Partially apply this function to the arguments.
|
default Function0<R> |
applyPartially(T1 v1,
T2 v2,
T3 v3,
T4 v4,
T5 v5) |
Partially apply this function to the arguments.
|
default Function4<T2,T3,T4,T5,R> |
curry(Tuple1<? extends T1> args) |
Deprecated.
- Use
applyPartially(Tuple1) instead. |
default Function3<T3,T4,T5,R> |
curry(Tuple2<? extends T1,? extends T2> args) |
Deprecated.
- Use
applyPartially(Tuple2) instead. |
default Function2<T4,T5,R> |
curry(Tuple3<? extends T1,? extends T2,? extends T3> args) |
Deprecated.
- Use
applyPartially(Tuple3) instead. |
default Function1<T5,R> |
curry(Tuple4<? extends T1,? extends T2,? extends T3,? extends T4> args) |
Deprecated.
- Use
applyPartially(Tuple4) instead. |
default Function0<R> |
curry(Tuple5<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5> args) |
Deprecated.
- Use
applyPartially(Tuple5) instead. |
default Function4<T2,T3,T4,T5,R> |
curry(T1 v1) |
Deprecated.
- Use
applyPartially(Object) instead. |
default Function3<T3,T4,T5,R> |
curry(T1 v1,
T2 v2) |
Deprecated.
- Use
applyPartially(Object, Object) instead. |
default Function2<T4,T5,R> |
curry(T1 v1,
T2 v2,
T3 v3) |
Deprecated.
- Use
applyPartially(Object, Object, Object) instead. |
default Function1<T5,R> |
curry(T1 v1,
T2 v2,
T3 v3,
T4 v4) |
Deprecated.
- Use
applyPartially(Object, Object, Object, Object) instead. |
default Function0<R> |
curry(T1 v1,
T2 v2,
T3 v3,
T4 v4,
T5 v5) |
Deprecated.
- Use
applyPartially(Object, Object, Object, Object, Object) instead. |
default R apply(Tuple5<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5> args)
args
- The arguments as a tuple.default Function4<T2,T3,T4,T5,R> applyPartially(T1 v1)
default Function3<T3,T4,T5,R> applyPartially(T1 v1, T2 v2)
default Function2<T4,T5,R> applyPartially(T1 v1, T2 v2, T3 v3)
default Function1<T5,R> applyPartially(T1 v1, T2 v2, T3 v3, T4 v4)
default Function0<R> applyPartially(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5)
default Function4<T2,T3,T4,T5,R> applyPartially(Tuple1<? extends T1> args)
default Function3<T3,T4,T5,R> applyPartially(Tuple2<? extends T1,? extends T2> args)
default Function2<T4,T5,R> applyPartially(Tuple3<? extends T1,? extends T2,? extends T3> args)
default Function1<T5,R> applyPartially(Tuple4<? extends T1,? extends T2,? extends T3,? extends T4> args)
default Function0<R> applyPartially(Tuple5<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5> args)
@Deprecated default Function4<T2,T3,T4,T5,R> curry(T1 v1)
applyPartially(Object)
instead.@Deprecated default Function3<T3,T4,T5,R> curry(T1 v1, T2 v2)
applyPartially(Object, Object)
instead.@Deprecated default Function2<T4,T5,R> curry(T1 v1, T2 v2, T3 v3)
applyPartially(Object, Object, Object)
instead.@Deprecated default Function1<T5,R> curry(T1 v1, T2 v2, T3 v3, T4 v4)
applyPartially(Object, Object, Object, Object)
instead.@Deprecated default Function0<R> curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5)
applyPartially(Object, Object, Object, Object, Object)
instead.@Deprecated default Function4<T2,T3,T4,T5,R> curry(Tuple1<? extends T1> args)
applyPartially(Tuple1)
instead.@Deprecated default Function3<T3,T4,T5,R> curry(Tuple2<? extends T1,? extends T2> args)
applyPartially(Tuple2)
instead.@Deprecated default Function2<T4,T5,R> curry(Tuple3<? extends T1,? extends T2,? extends T3> args)
applyPartially(Tuple3)
instead.@Deprecated default Function1<T5,R> curry(Tuple4<? extends T1,? extends T2,? extends T3,? extends T4> args)
applyPartially(Tuple4)
instead.Copyright © 2018. All rights reserved.