xyz.funjava.functional.Function4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of base Show documentation
Show all versions of base Show documentation
Library providing basic function types for Java 8
The newest version!
package xyz.funjava.functional;
import java.util.function.Function;
/**
* @generated
*/
@FunctionalInterface
public interface Function4 {
public RESULT apply(A a,B b,C c,D d);
default public Function>>> curried() {
return a -> b -> c -> d -> apply(a,b,c,d);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy