@FunctionalInterface public interface TriFunction<A,B,C,R>
TriFunction interface.
Modifier and Type | Method and Description |
---|---|
default <V> TriFunction<A,B,C,V> |
andThen(Function<? super R,? extends V> after)
andThen.
|
R |
apply(A a,
B b,
C c)
apply.
|
default <V> TriFunction<A,B,C,V> andThen(Function<? super R,? extends V> after)
andThen.
V
- a V classafter
- a Function
objectTriFunction
objectCopyright © 2016–2024. All rights reserved.