Package io.bytestreams.codec.core.util
Interface TriFunction<A,B,C,R>
- Type Parameters:
A- the type of the first argumentB- the type of the second argumentC- the type of the third argumentR- the type of the result
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a function that accepts three arguments and produces a result.
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
a- the first argumentb- the second argumentc- the third argument- Returns:
- the result
-