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

org.openprovenance.prov.template.log2prov.interfaces.TriFunction Maven / Gradle / Ivy

The newest version!
package org.openprovenance.prov.template.log2prov.interfaces;

public interface TriFunction {

    /**
     * Applies this function to the given arguments.
     *
     * @param t the first function argument
     * @param u the second function argument
     * @param v the third function argument
     * @return the function result
     */
    R apply(T t, U u, V v);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy