Package com.identityworksllc.iiq.common
Interface TriFunction<A,B,C,R>
-
- Type Parameters:
A
- The first parameter typeB
- The second parameter typeC
- The third parameter typeR
- The output type
- 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<A,B,C,R>
Represents a function that takes three inputs and produces one output
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(A a, B b, C c)
Applies this function to the given arguments
-