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

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

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

import java.util.function.BiFunction;

@FunctionalInterface
public interface TriFunction {
    R apply(A a, B b, C c);

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy