Package net.minecraftforge.fml.util
Interface ThreeConsumer<T,U,V>  
public interface ThreeConsumer<T,U,V>  
Three-consumer version of consumer. Allows wrapping methods with three arguments.
- 
Method Summary
 
- 
Method Details
- 
bindArgs
Bind arguments to the three consumer to generate a consumer.ThreeConsumer.bindArgs(MyClass::instanceMethodReference, arg1, arg2).apply(myClassInstance)- Returns:
 - a Consumer which has the second and third arguments bound.
 
 - 
accept
 
 -