Interface TriFunction<T,U,V,R>
- Type Parameters:
T- The type of the first argument.U- The type of the second argument.V- The type of the third argument.R- The type of the output.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface TriFunction<T,U,V,R>
Represents a
BiFunction but accepting three different input parameter.- Since:
- 0.1
- See Also:
BiFunction
-
Method Details
-
accept
Performs the given operation on the passed arguments.- Parameters:
t- The first input argument.u- The second input argument.v- The third input argument.- Returns:
- The resulting object.
-