org.lambda.actions.Action4 Maven / Gradle / Ivy
package org.lambda.actions;
public interface Action4
{
public static Action4 doNothing()
{
return (In1, In2, In3, In4) -> {
};
}
public void call(In1 a, In2 b, In3 c, In4 d);
}
package org.lambda.actions;
public interface Action4
{
public static Action4 doNothing()
{
return (In1, In2, In3, In4) -> {
};
}
public void call(In1 a, In2 b, In3 c, In4 d);
}