public interface ThreeConsumer<T,U,V>
Modifier and Type | Method and Description |
---|---|
void |
accept(T t,
U u,
V v) |
static <T,U,V> java.util.function.Consumer<T> |
bindArgs(ThreeConsumer<? super T,U,V> c,
U arg2,
V arg3)
Bind arguments to the three consumer to generate a consumer.
|
static <T,U,V> java.util.function.Consumer<T> bindArgs(ThreeConsumer<? super T,U,V> c, U arg2, V arg3)
ThreeConsumer.bindArgs(MyClass::instanceMethodReference, arg1, arg2).apply(myClassInstance)