All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hydra.tools.Function4 Maven / Gradle / Ivy

package hydra.tools;

import java.util.Objects;
import java.util.function.Function;

@FunctionalInterface
public interface Function4 {

    R apply(A a, B b, C c, D d);

    default  Function4 andThen(Function after) {
        Objects.requireNonNull(after);
        return (A a, B b, C c, D d) -> after.apply(apply(a, b, c, d));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy