@FunctionalInterface public interface Function3<T1,T2,T3,R>
| 限定符和类型 | 方法和说明 |
|---|---|
default Function2<T2,T3,R> |
acceptPartially(T1 t1) |
default Function1<T3,R> |
acceptPartially(T1 t1,
T2 t2) |
default Function0<R> |
acceptPartially(T1 t1,
T2 t2,
T3 t3) |
R |
apply(T1 t1,
T2 t2,
T3 t3) |
default R |
applyUnchecked(T1 t1,
T2 t2,
T3 t3) |
default R |
applyUnchecked(T1 t1,
T2 t2,
T3 t3,
Consumer<Throwable> handler) |
default R |
applyUnchecked(T1 t1,
T2 t2,
T3 t3,
Function<Throwable,R> handler) |
Copyright © 2024. All rights reserved.