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

cl.core.function.BiFunctionWithException Maven / Gradle / Ivy

The newest version!
package cl.core.function;

/**
 * Represents an operation which accepts two arguments, returns a result, and may throw a checked exception. 
 *  
 * @param  the type of the first argument to the operation
 * @param  the type of the second argument to the operation
 * @param  the type of the operation result
 */
@FunctionalInterface
public interface BiFunctionWithException {
    R apply(T t, U u) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy