fj.function.Try0 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionaljava Show documentation
Show all versions of functionaljava Show documentation
Functional Java is an open source library that supports closures for the Java programming language
package fj.function;
/**
* A product of A
which may throw an Exception
.
*
* Used to instantiate a lambda that may throw an Exception
before converting to a P1
.
*
* @see fj.Try#f(Try0)
* @version %build.number%
*/
public interface Try0 {
A f() throws Z;
}