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

fj.function.Try7 Maven / Gradle / Ivy

Go to download

Functional Java is an open source library that supports closures for the Java programming language

There is a newer version: 5.0
Show newest version
package fj.function;


/**
 * A transformation function of arity-7 from A, B, C, D, E, F and G to H that may throw an Exception.
 *
 * Used to instantiate a lambda that may throw an Exception before converting to an F7.
 *
 * @see fj.Try#f(Try7)
 * @version %build.number%
 */

public interface Try7 {

    H f(A a, B b, C c, D d, E e, F f, G g) throws Z;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy