Package civitas.celestis.util.function
Interface TriConsumer<T,U,V>
- Type Parameters:
T- The first input parameterU- The second input parameterV- The third input parameter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A function which takes three parameters of different types, and returns no value.
-
Method Summary
-
Method Details
-
accept
Accepts this function, executing its contents.- Parameters:
t- The first input parameteru- The second input parameterv- The third input parameter
-