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

org.reactfx.util.PentaFunction Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
package org.reactfx.util;

@FunctionalInterface
public interface PentaFunction {
    R apply(A a, B b, C c, D d, E e);

    default TetraFunction pApply(A a) {
        return (b, c, d, e) -> apply(a, b, c, d, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy