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

com.talanlabs.java.lambda.ThrowingFunction Maven / Gradle / Ivy

The newest version!
package com.talanlabs.java.lambda;

/**
 * A function throwing an exception.
 */
public interface ThrowingFunction {

    /**
     * Applies this function to the given argument.
     *
     * @param i the function argument
     * @return the function result
     * @throws Exception
     */
    O apply(I i) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy