Package groovy.util.function
Interface TriConsumer<A,B,C>
- Type Parameters:
A- the first argument typeB- the second argument typeC- the third argument type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A
Consumer of three input arguments —
the three-argument cousin of BiConsumer
that java.util.function itself does not provide.- Since:
- 6.0.0
-
Method Summary
-
Method Details
-
accept
Performs the operation on the given arguments.
-