org.lambda.actions.Action2 Maven / Gradle / Ivy
package org.lambda.actions;
/**
* Findable name for java.util.function.BiConsumer
**/
public interface Action2
{
public static Action2 doNothing()
{
return (In1, In2) -> {
};
}
public void call(In1 a, In2 b);
}