org.lambda.actions.Action1 Maven / Gradle / Ivy
The newest version!
package org.lambda.actions;
/**
* Findable name for java.util.function.Consumer
**/
public interface Action1
{
public static Action1 doNothing()
{
return In1 -> {
};
}
public void call(In1 a);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy