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